create-vue
Version:
🛠️ The recommended way to start a Vite-powered Vue project
57 lines • 1.48 kB
JSON
{
"name": "create-vue",
"version": "3.23.0",
"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
},
"devDependencies": {
"@clack/prompts": "^1.7.0",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^24.13.3",
"@vue/tsconfig": "^0.9.1",
"ejs": "^6.0.1",
"picocolors": "^1.1.1",
"rolldown": "1.2.0",
"rollup-plugin-license": "^3.7.1",
"vite-plus": "latest",
"vitest": "4.1.10",
"zx": "^8.8.5"
},
"engines": {
"node": "^22.18.0 || >=24.12.0"
},
"scripts": {
"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",
"release": "zx ./scripts/release.mjs",
"pretest": "pnpm run build && pnpm run snapshot",
"test": "zx ./scripts/test.mjs",
"test:unit": "vp test"
}
}