forked from vuejs/create-vue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.53 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
{
"name": "create-vue",
"version": "3.9.1",
"description": "An easy way to start a Vue project",
"type": "module",
"bin": {
"create-vue": "outfile.cjs"
},
"files": [
"locales",
"outfile.cjs",
"template"
],
"engines": {
"node": ">=v16.20.0"
},
"scripts": {
"prepare": "husky install",
"format": "prettier --write .",
"build": "zx ./scripts/build.mjs",
"snapshot": "zx ./scripts/snapshot.mjs",
"pretest": "run-s build 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/node18": "^18.2.2",
"@types/eslint": "^8.56.1",
"@types/node": "^18.19.5",
"@types/prompts": "^2.4.9",
"@vue/create-eslint-config": "^0.3.2",
"@vue/tsconfig": "^0.5.1",
"ejs": "^3.1.9",
"esbuild": "^0.18.20",
"esbuild-plugin-license": "^1.2.2",
"husky": "^8.0.3",
"kolorist": "^1.8.0",
"lint-staged": "^15.2.0",
"minimist": "^1.2.8",
"npm-run-all2": "^6.1.1",
"prettier": "^3.1.1",
"prompts": "^2.4.2",
"vitest": "^1.1.3",
"zx": "^7.2.3"
},
"lint-staged": {
"*.{js,ts,vue,json}": [
"prettier --write"
]
}
}