-
-
Notifications
You must be signed in to change notification settings - Fork 314
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.18 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.18 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
{
"name": "react-docgen",
"version": "6.0.0-alpha.4",
"description": "A library to extract information from React components for documentation generation.",
"repository": "reactjs/react-docgen",
"type": "module",
"browser": {
"./dist/importer/fsImporter.js": "./dist/importer/ignoreImporter.js",
"./src/importer/fsImporter.ts": "./src/importer/ignoreImporter.ts"
},
"files": [
"dist"
],
"engines": {
"node": ">=14.17.0"
},
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"scripts": {
"build": "rimraf dist/ && tsc",
"test": "vitest run",
"watch": "rimraf dist/ && tsc --watch"
},
"keywords": [
"react",
"documentation",
"documentation-generation"
],
"author": {
"name": "Felix Kling (https://github.com/fkling)"
},
"contributors": [
"Daniel Tschinder (https://github.com/danez)"
],
"license": "MIT",
"dependencies": {
"@babel/core": "^7.18.9",
"@babel/traverse": "^7.18.9",
"@babel/types": "^7.18.9",
"@types/babel__traverse": "^7.18.0",
"@types/doctrine": "^0.0.5",
"@types/resolve": "^1.20.2",
"doctrine": "^3.0.0",
"resolve": "^1.22.1",
"strip-indent": "^4.0.0"
}
}