generated from Gerrit0/typedoc-custom-theme-demo
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 1.78 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "typedoc-material-theme",
"version": "1.3.0",
"description": "A TypeDoc theme based on Material 3.",
"keywords": [
"typedoc-theme",
"typedoc-plugin",
"material",
"material-design",
"material-3",
"typedocplugin",
"typescript",
"documentation"
],
"homepage": "https://github.com/dmnsgn/typedoc-material-theme",
"bugs": "https://github.com/dmnsgn/typedoc-material-theme/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/dmnsgn/typedoc-material-theme.git"
},
"funding": [
{
"type": "individual",
"url": "https://paypal.me/dmnsgn"
},
{
"type": "individual",
"url": "https://commerce.coinbase.com/checkout/56cbdf28-e323-48d8-9c98-7019e72c97f3"
}
],
"license": "MIT",
"author": "Damien Seguin (https://github.com/dmnsgn)",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./lib/index.js"
}
},
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"dev": "npm run dev:watch & npm run dev:serve",
"dev:serve": "npx browser-sync ./docs --watch --single",
"dev:watch": "node --watch-path ./src --watch-path ./assets ./scripts/dev.mjs",
"pretest": "tsc",
"test": "typedoc src/** --plugin ./lib/index.js --themeColor '#cb9820'"
},
"dependencies": {
"@material/material-color-utilities": "^0.3.0"
},
"devDependencies": {
"@types/node": "^22.10.7",
"typedoc": "^0.27.6",
"typescript": "^5.7.x"
},
"peerDependencies": {
"typedoc": "^0.25.13 || ^0.26.x || ^0.27.x"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.6.0"
},
"snowdev": {
"files": "src/**/*.tsx",
"lint": false,
"updateVersions": false,
"docs": false
}
}