-
Notifications
You must be signed in to change notification settings - Fork 432
/
package.json
62 lines (62 loc) · 1.54 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
{
"name": "create-vue",
"version": "3.12.1",
"description": "🛠️ The recommended way to start a Vite-powered Vue project",
"type": "module",
"packageManager": "[email protected]",
"bin": {
"create-vue": "outfile.cjs"
},
"files": [
"locales",
"outfile.cjs",
"template"
],
"engines": {
"node": ">=v18.3.0"
},
"scripts": {
"prepare": "husky",
"format": "prettier --write .",
"build": "zx ./scripts/build.mjs",
"snapshot": "zx ./scripts/snapshot.mjs",
"pretest": "pnpm run build && pnpm run snapshot",
"test": "zx ./scripts/test.mjs",
"test:unit": "vitest",
"prepublishOnly": "zx ./scripts/prepublish.mjs"
},
"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": {
"@tsconfig/node22": "^22.0.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.9.0",
"@types/prompts": "^2.4.9",
"@vue/create-eslint-config": "^0.6.1",
"@vue/tsconfig": "^0.5.1",
"ejs": "^3.1.10",
"esbuild": "^0.24.0",
"esbuild-plugin-license": "^1.2.3",
"husky": "^9.1.6",
"kleur": "^4.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prompts": "^2.4.2",
"vitest": "^2.1.4",
"zx": "^8.2.0"
},
"lint-staged": {
"*.{js,ts,vue,json}": [
"prettier --write"
]
}
}