-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "typedoc-plugin-rename-defaults",
"version": "0.7.1",
"description": "A TypeDoc plugin that renames the `default` exports to their original name",
"keywords": [
"typedoc",
"plugin",
"typedocplugin",
"typedoc-plugin"
],
"homepage": "https://github.com/felipecrs/typedoc-plugin-rename-defaults#readme",
"bugs": "https://github.com/felipecrs/typedoc-plugin-rename-defaults/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/felipecrs/typedoc-plugin-rename-defaults.git"
},
"license": "MIT",
"author": "Felipe Santos (https://github.com/felipecrs)",
"type": "module",
"exports": "./index.js",
"files": [
"index.js"
],
"scripts": {
"dev": "cd test && typedoc && serve --no-request-logging docs"
},
"devDependencies": {
"serve": "^14.2.3",
"typedoc": "^0.26.0",
"typescript": "^5.5.2"
},
"peerDependencies": {
"typedoc": ">=0.22.x <0.27.x"
},
"volta": {
"node": "20.15.0",
"npm": "10.8.1"
},
"dependencies": {
"camelcase": "^8.0.0"
}
}