{
  "name": "vite-vue3-ts-cli",
  "version": "0.4.0",
  "type": "module",
  "description": "一个基于 Vite + Vue3 + TypeScript 的项目模板",
  "scripts": {
    "dev": "vite",
    "typecheck": "tsc --noEmit && vue-tsc --noEmit --skipLibCheck",
    "svgo": "svgo -f . -r",
    "build": "rimraf dist && vite build --mode development",
    "build:prod": "rimraf dist && vite build --mode production",
    "report": "rimraf dist && vite build",
    "preview": "vite preview",
    "preview:build": "pnpm build && vite preview",
    "test": "vitest",
    "test:run": "vitest run",
    "test:coverage": "vitest run --coverage",
    "clean:cache": "rimraf .eslintcache && rimraf pnpm-lock.yaml && rimraf node_modules && pnpm store prune && pnpm install",
    "lint:eslint": "eslint --cache --max-warnings 0  \"{src,viteConfig,lib}/**/*.{vue,js,jsx,ts,tsx}\" --fix",
    "lint:prettier": "prettier --write  \"src/**/*.{js,ts,json,tsx,css,scss,vue,html,md}\"",
    "lint:stylelint": "stylelint --cache --fix \"**/*.{html,vue,css,scss}\" --cache-location node_modules/.cache/stylelint/",
    "lint": "pnpm lint:eslint && pnpm lint:prettier && pnpm lint:stylelint",
    "commitlint": "commitlint --config commitlint.config.ts -e -V",
    "prepare": "husky",
    "preinstall": "npx only-allow pnpm"
  },
  "dependencies": {
    "axios": "^1.11.0",
    "crypto-js": "^4.2.0",
    "dayjs": "^1.11.13",
    "nprogress": "^0.2.0",
    "pinia": "^3.0.3",
    "pinia-plugin-persistedstate": "^4.4.1",
    "qs": "^6.14.0",
    "vue": "^3.5.18",
    "vue-router": "^4.5.1"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.8.1",
    "@commitlint/config-conventional": "^19.8.1",
    "@eslint/js": "^9.32.0",
    "@tailwindcss/vite": "^4.1.11",
    "@types/crypto-js": "^4.2.2",
    "@types/node": "^22.16.5",
    "@types/nprogress": "^0.2.3",
    "@types/qs": "^6.14.0",
    "@vitejs/plugin-vue": "^5.2.4",
    "@vitest/coverage-v8": "^2.1.0",
    "@vue/test-utils": "^2.4.0",
    "eslint": "^9.32.0",
    "vitest": "^2.1.0",
    "jsdom": "^25.0.0",
    "eslint-config-prettier": "^9.1.2",
    "@eslint/markdown": "^6.0.0",
    "eslint-plugin-prettier": "^5.5.3",
    "eslint-plugin-vue": "^9.33.0",
    "globals": "^15.15.0",
    "husky": "^9.1.7",
    "lint-staged": "^15.5.2",
    "postcss-html": "^1.8.0",
    "postcss-pxtorem": "^6.1.0",
    "prettier": "3.3.3",
    "rimraf": "^6.0.1",
    "sass-embedded": "^1.89.2",
    "stylelint": "^16.22.0",
    "stylelint-config-html": "^1.1.0",
    "stylelint-config-recess-order": "^5.1.1",
    "stylelint-config-standard-scss": "^13.1.0",
    "stylelint-config-standard-vue": "^1.0.0",
    "svgo": "^4.0.0",
    "tailwindcss": "^4.1.11",
    "typescript": "~5.7.0",
    "typescript-eslint": "^8.38.0",
    "unplugin-auto-import": "^0.18.6",
    "unplugin-vue-components": "^0.27.5",
    "vite": "^5.4.19",
    "vite-plugin-compression2": "^2.2.0",
    "vite-plugin-eslint2": "^5.0.4",
    "vite-svg-loader": "^5.1.0",
    "vue-eslint-parser": "^10.2.0",
    "vue-tsc": "^2.2.12"
  },
  "keywords": [
    "Vite",
    "Vue3",
    "TypeScript",
    "tailwindcss",
    "Web"
  ],
  "homepage": "https://github.com/star-devil/vite-vue3-ts-cli",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/star-devil/vite-vue3-ts-cli.git"
  },
  "bugs": {
    "url": "https://github.com/star-devil/vite-vue3-ts-cli/issues"
  },
  "license": "MIT",
  "author": {
    "name": "star-devil",
    "url": "https://github.com/star-devil"
  },
  "engines": {
    "node": ">=18.12.0",
    "pnpm": ">=8.0.0"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": [
      "eslint --fix",
      "prettier --write"
    ],
    "*.json": [
      "prettier --write"
    ],
    "*.vue": [
      "eslint --fix",
      "prettier --write",
      "stylelint --fix"
    ],
    "*.{scss,less,styl,html}": [
      "stylelint --fix",
      "prettier --write"
    ],
    "*.md": [
      "prettier --write"
    ]
  }
}
