-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.16 KB
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
{
"displayName": "Workspace",
"name": "@disqada/workspace",
"version": "1.6.2",
"description": "Generate types and docs with a click",
"scripts": {
"install": "workspace ./workspace.json -c",
"format": "prettier . --write --ignore-path .gitignore",
"test": "mocha ./test/**/*.test.js"
},
"bin": {
"workspace": "./bin/workspace.js"
},
"type": "module",
"files": [
"cli",
"bin",
"template",
"LICENSE",
"*.md"
],
"homepage": "https://github.com/DisQada/Workspace",
"repository": "github:DisQada/Workspace",
"bugs": {
"url": "https://github.com/DisQada/Workspace/issues"
},
"keywords": [
"types",
"typings",
"jsdoc",
"tsdoc",
"typedoc",
"docs",
"documentation",
"generated"
],
"author": "DisQada <hi@disqada.org> (https://links.disqada.org)",
"license": "Apache-2.0",
"dependencies": {
"commander": "^12.1.0"
},
"peerDependencies": {
"@mxssfd/typedoc-theme": "^1.1.6",
"typedoc-plugin-extras": "^3.1.0",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "^5.5.4"
},
"devDependencies": {
"mocha": "^10.7.3",
"prettier": "^3.3.3"
}
}