-
Notifications
You must be signed in to change notification settings - Fork 518
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.65 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.65 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
54
55
56
57
58
59
60
61
{
"name": "create-vue",
"version": "3.22.3",
"description": "🛠️ The recommended way to start a Vite-powered Vue project",
"keywords": [],
"homepage": "https://github.com/vuejs/create-vue#readme",
"bugs": {
"url": "https://github.com/vuejs/create-vue/issues"
},
"license": "MIT",
"author": "Haoqun Jiang <npm@haoqun.me>",
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/create-vue.git"
},
"bin": {
"create-vue": "bundle.js"
},
"files": [
"bundle.js",
"locales",
"template",
"!template/**/node_modules/.bin/*"
],
"type": "module",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"prepare": "vp config",
"format": "vp fmt",
"format-check": "vp fmt --check",
"lint": "vp lint . --fix --ignore-pattern playground",
"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": "vp test",
"preversion": "git fetch && git status -uno | grep -q 'Your branch is up to date'",
"postversion": "zx ./scripts/postversion.mjs",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@clack/prompts": "^1.2.0",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^24.12.2",
"@vue/tsconfig": "^0.9.1",
"ejs": "^3.1.10",
"picocolors": "^1.1.1",
"rolldown": "1.0.0-rc.16",
"rollup-plugin-license": "^3.7.1",
"vite-plus": "catalog:",
"vitest": "catalog:",
"zx": "^8.8.5"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"packageManager": "pnpm@10.33.0"
}