-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.51 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
{
"name": "@hotdogc1017/create-web-app",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"version": "1.1.16-beta.2",
"packageManager": "[email protected]",
"author": "hotdogc1017",
"license": "MIT",
"homepage": "https://github.com/hotdogc1017/create-web-app",
"repository": {
"type": "git",
"url": "git+https://github.com/hotdogc1017/create-web-app.git"
},
"bugs": {
"url": "https://github.com/hotdogc1017/create-web-app/issues"
},
"bin": {
"create-web-app": "index.js"
},
"files": ["dist", "index.js", "template-vue-ts", "template-react", "template-react-ts"],
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"typecheck": "tsc --noEmit",
"bumpp": "bumpp",
"clean": "rimraf dist node_modules **/node_modules",
"prepublishOnly": "npm run build",
"test:version": "unbuild && node index.js -v",
"test:help": "unbuild && node index.js -h",
"test:prompt": "unbuild && node index.js --debug=prompts",
"test:full": "unbuild && node index.js --debug=full"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@types/minimist": "^1.2.5",
"@types/prompts": "^2.4.9",
"bumpp": "^9.9.1",
"cross-spawn": "^7.0.6",
"eslint": "^9.16.0",
"minimist": "^1.2.8",
"picocolors": "^1.1.1",
"pnpm": "^9.15.1",
"prompts": "^2.4.2",
"rimraf": "^6.0.1",
"unbuild": "^3.0.1",
"vite": "^6.0.5"
}
}