-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.36 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
{
"name": "create-init-cli",
"version": "0.0.1",
"description": "A scaffolding tool that creates and initializes projects with options for selecting frameworks, languages, UIs, and configuration files. It supports remote template downloads and template caching.",
"main": "cli.js",
"bin": {
"cptc": "bin/cli.js",
"cptc-create": "bin/cptc-create.js",
"cptc-install": "bin/cptc-install.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wushengzhu/create-init-cli.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wushengzhu/create-init-cli/issues"
},
"homepage": "https://github.com/wushengzhu/create-init-cli#readme",
"dependencies": {
"chalk": "^4.1.2",
"child_process": "^1.0.2",
"commander": "^10.0.1",
"download-git-repo": "^3.0.2",
"fs-extra": "^11.3.0",
"inquirer": "^8.2.6",
"ora": "^5.4.1",
"prettier": "^3.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@eslint/json": "^0.12.0",
"@eslint/markdown": "^6.6.0",
"@types/node": "^20.14.9",
"eslint": "^9.29.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-vue": "^10.2.0",
"globals": "^16.2.0",
"typescript-eslint": "^8.35.0"
}
}