-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "react-component-count",
"version": "1.0.0",
"description": "Optimized script to count React components in a project",
"main": "dist/count-components.js",
"type": "module",
"bin": {
"count-components": "./dist/count-components.js"
},
"scripts": {
"build": "tsc",
"start": "node --loader ts-node/esm count-components.ts",
"count": "tsx count-components.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"components",
"counter",
"analysis",
"cli"
],
"author": {
"name": "Imamuzzaki Abu Salam",
"email": "imamuzzaki@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/imbios/react-component-count.git"
},
"bugs": {
"url": "https://github.com/imbios/react-component-count/issues"
},
"homepage": "https://github.com/imbios/react-component-count#readme",
"packageManager": "pnpm@10.17.0",
"devDependencies": {
"@types/node": "^22.18.8",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}