-
Notifications
You must be signed in to change notification settings - Fork 472
/
Copy pathpackage.json
76 lines (76 loc) · 1.92 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "create-vue",
"version": "3.16.4",
"description": "🛠️ The recommended way to start a Vite-powered Vue project",
"type": "module",
"packageManager": "[email protected]",
"bin": {
"create-vue": "bundle.js"
},
"files": [
"locales",
"bundle.js",
"template",
"!template/**/node_modules/.bin/*"
],
"engines": {
"node": ">=v18.3.0"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"onFail": "download",
"version": ">= 10.7.1"
}
},
"scripts": {
"prepare": "husky",
"format": "prettier --write .",
"build": "rolldown -c rolldown.config.ts",
"snapshot": "zx ./scripts/snapshot.mjs",
"pretest": "pnpm run build && pnpm run snapshot",
"test": "zx ./scripts/test.mjs",
"test:unit": "vitest",
"preversion": "git fetch && git status -uno | grep -q 'Your branch is up to date'",
"postversion": "zx ./scripts/postversion.mjs",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/create-vue.git"
},
"keywords": [],
"author": "Haoqun Jiang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/create-vue/issues"
},
"homepage": "https://github.com/vuejs/create-vue#readme",
"devDependencies": {
"@clack/prompts": "^0.10.1",
"@tsconfig/node22": "^22.0.1",
"@types/eslint": "^9.6.1",
"@types/node": "^22.14.1",
"@types/prompts": "^2.4.9",
"@vue/create-eslint-config": "^0.10.1",
"@vue/tsconfig": "^0.7.0",
"ejs": "^3.1.10",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"picocolors": "^1.1.1",
"prettier": "3.5.3",
"rolldown": "1.0.0-beta.7",
"rollup-plugin-license": "^3.6.0",
"vitest": "^3.1.1",
"zx": "^8.5.2"
},
"lint-staged": {
"*.{js,ts,vue,json}": [
"prettier --write"
]
},
"publishConfig": {
"access": "public",
"provenance": true
}
}