-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.57 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.57 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
65
66
67
{
"name": "@app-template/create-app",
"version": "1.2.7",
"description": "CLI for creating new app.",
"type": "module",
"scripts": {
"dev": "tsc --project tsconfig.development.json --watch",
"build": "tsc && pnpm run tar-templates",
"prepublishOnly": "npm run build",
"lint": "eslint",
"test": "jest",
"cz": "cz",
"tar-templates": "node ./scripts/tar-templates.js"
},
"bin": "./bin/index.js",
"keywords": [
"create app",
"cli"
],
"files": [
"bin/**/*.js",
"templates/*.tar.gz"
],
"author": {
"name": "luohuidong",
"email": "luohuidong01@126.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/web-app-template/create-app/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:web-app-template/create-app.git"
},
"homepage": "https://github.com/web-app-template/create-app",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@tsconfig/recommended": "^1.0.7",
"@types/adm-zip": "^0.5.5",
"@types/inquirer": "^9.0.7",
"@types/tar": "^6.1.13",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"zx": "^8.1.4"
},
"dependencies": {
"commander": "^12.1.0",
"inquirer": "^9.3.6",
"ora": "^8.0.1",
"tar": "^7.4.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "pnpm@9.7.0"
}