-
-
Notifications
You must be signed in to change notification settings - Fork 297
/
package.json
44 lines (44 loc) · 937 Bytes
/
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": "@react-docgen/cli",
"version": "2.0.4",
"description": "A CLI to extract information from React components for documentation generation.",
"repository": {
"type": "git",
"url": "https://github.com/reactjs/react-docgen.git",
"directory": "packages/react-docgen-cli"
},
"type": "module",
"bin": {
"react-docgen": "dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=16.14.0"
},
"scripts": {
"build": "rimraf dist/ && tsc",
"test": "vitest run"
},
"keywords": [
"react",
"cli",
"documentation-generation"
],
"author": {
"name": "Daniel Tschinder (http://github.com/danez)"
},
"license": "MIT",
"dependencies": {
"chalk": "5.3.0",
"commander": "11.1.0",
"debug": "4.3.7",
"fast-glob": "3.3.2",
"react-docgen": "workspace:7.1.0",
"slash": "5.1.0"
},
"devDependencies": {
"@types/debug": "4.1.12"
}
}