-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.31 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "dynax",
"version": "1.0.6",
"description": "This ClI tool anables you to quickly start building a new React or React-Native or Vue application,with everything you need to start developing in minutes.",
"main": "./lib/index.js",
"homepage": "",
"engines": {
"node": ">=18"
},
"files": [
"lib",
"template",
"package.json",
"README.md"
],
"bin": {
"dynax": "./lib/index.js"
},
"scripts": {
"dev": "ts-node ./index.ts",
"build": "rimraf lib && tsc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@inquirer/prompts": "^5.0.5",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"execa": "^5.1.1",
"figlet": "^1.7.0",
"fs-extra": "^11.2.0",
"globby": "^11.0.4",
"lodash": "^4.17.21",
"ora": "^5.4.1",
"pacote": "^18.0.6",
"semver": "^7.6.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@types/figlet": "^1.5.8",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/lodash": "^4.17.5",
"@types/node": "^20.14.2",
"@types/pacote": "^11.1.8",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"keywords": [
"dynax",
"cli",
"react",
"react-native",
"vue"
],
"author": "[email protected]",
"license": "MIT"
}