{
  "name": "create-vue",
  "version": "3.14.1",
  "description": "🛠️ The recommended way to start a Vite-powered Vue project",
  "type": "module",
  "bin": {
    "create-vue": "outfile.cjs"
  },
  "files": [
    "locales",
    "outfile.cjs",
    "template"
  ],
  "engines": {
    "node": ">=v18.3.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vuejs/create-vue.git"
  },
  "keywords": [],
  "author": "Haoqun Jiang <npm@haoqun.me>",
  "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.13.1",
    "@types/prompts": "^2.4.9",
    "@vue/create-eslint-config": "^0.7.2",
    "@vue/tsconfig": "^0.7.0",
    "ejs": "^3.1.10",
    "esbuild": "^0.24.2",
    "esbuild-plugin-license": "^1.2.3",
    "husky": "^9.1.7",
    "kleur": "^4.1.5",
    "lint-staged": "^15.4.3",
    "prettier": "^3.4.2",
    "prompts": "^2.4.2",
    "vitest": "^3.0.5",
    "zx": "^8.3.2"
  },
  "lint-staged": {
    "*.{js,ts,vue,json}": [
      "prettier --write"
    ]
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "scripts": {
    "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",
    "postversion": "zx ./scripts/postversion.mjs"
  }
}