-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.6 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.6 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "makepack",
"version": "1.7.30",
"type": "module",
"description": "A CLI tool to create, build, and manage JavaScript, TypeScript, React, and React-TypeScript libraries for npm projects.",
"categories": [
"Other"
],
"author": {
"name": "Devnax",
"email": "devnaxrul@gmail.com"
},
"bin": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/devnax/makepack"
},
"bugs": {
"url": "https://github.com/devnax/makepack/issues"
},
"homepage": "https://github.com/devnax/makepack#readme",
"scripts": {
"start": "node ./src/index.js start",
"create": "node ./src/index.js create",
"build": "node ./src/index.js build"
},
"dependencies": {
"@rollup/plugin-commonjs": "^28.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/fs-extra": "^11.0.4",
"chokidar": "^4.0.3",
"commander": "^12.1.0",
"esbuild": "^0.25.5",
"express": "^4.21.1",
"fs-extra": "^11.2.0",
"inquirer": "^12.1.0",
"lodash.debounce": "^4.0.8",
"madge": "^8.0.0",
"ora": "^8.1.1",
"react": "^19.1.0",
"react-dom": "^19.0.0",
"rollup": "^4.43.0",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-preserve-directives": "^0.4.0",
"tslib": "^2.8.1",
"vite": "^6.0.2"
},
"keywords": [
"CLI",
"npm",
"library",
"JavaScript",
"TypeScript",
"React",
"npm-package"
],
"devDependencies": {
"@types/react": "^19.1.8",
"typescript": "^5.8.3"
}
}