forked from JulianWowra/typedoc-github-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "typedoc-github-theme",
"description": "Elegant and seamless look and feel for your TypeScript documentation on GitHub Pages",
"version": "0.2.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"repository": "https://github.com/JulianWowra/typedoc-github-theme",
"homepage": "https://julianwowra.github.io/typedoc-github-theme/",
"author": "Julian Wowra <[email protected]>",
"license": "MIT",
"publishConfig": {
"provenance": true
},
"packageManager": "[email protected]",
"dependencies": {},
"peerDependencies": {
"typedoc": "^0.27.6"
},
"devDependencies": {
"@types/node": "^18.19.69",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"prettier": "3.4.2",
"typedoc": "~0.27.6",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0"
},
"scripts": {
"build": "pnpm build:lib && pnpm build:docs",
"build:lib": "tsc",
"build:docs": "typedoc src --plugin ./dist/index.js",
"lint": "pnpm lint:format && pnpm lint:code",
"lint:code": "eslint .",
"lint:format": "prettier --check ."
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"typedoc-theme",
"typedoc-github-theme"
]
}