-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 782 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 782 Bytes
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
{
"name": "react-analyzer",
"version": "1.0.0",
"description": "A library to analyze React components and extract prop types",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "for file in test/*.test.js; do node \"$file\"; done",
"prepublishOnly": "npm run build",
"build-demo": "esbuild src/index.ts --bundle --platform=browser --format=iife --global-name=ReactAnalyzer --outfile=demo/react-analyzer.js"
},
"keywords": [
"react",
"analysis",
"props",
"typescript"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.x.x",
"typescript": "^4.x.x"
},
"dependencies": {
"@babel/standalone": "^7.25.5",
"@babel/types": "^7.25.4"
}
}