@octohash/vite-config
Version:
A personal ready-to-use Vite configuration repository, opinionated but customizable.
94 lines • 2.47 kB
JSON
{
"name": "@octohash/vite-config",
"type": "module",
"version": "0.2.2",
"description": "A personal ready-to-use Vite configuration repository, opinionated but customizable.",
"author": "jinghaihan",
"license": "MIT",
"homepage": "https://github.com/jinghaihan/vite-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jinghaihan/vite-config.git"
},
"bugs": {
"url": "https://github.com/jinghaihan/vite-config/issues"
},
"keywords": [
"vite",
"vite-config"
],
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"peerDependencies": {
"vite": ">=6.0.0"
},
"dependencies": {
"@antfu/install-pkg": "^1.1.0",
"@clack/prompts": "^0.11.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.0.1",
"dayjs": "^1.11.13",
"deepmerge": "^4.3.1",
"find-up": "^7.0.0",
"local-pkg": "^1.1.1",
"pkg-types": "^2.2.0",
"rollup-plugin-visualizer": "^6.0.3",
"unplugin-auto-import": "^20.0.0",
"unplugin-vue-components": "^29.0.0",
"unplugin-vue-router": "^0.15.0",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-dynamic-base": "^1.2.0"
},
"optionalDependencies": {
"@intlify/unplugin-vue-i18n": "^6.0.8",
"@originjs/vite-plugin-federation": "^1.4.1",
"vite-plugin-jspm": "^0.6.1",
"vite-plugin-vue-devtools": "^8.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^5.2.0",
"@jspm/generator": "^2.6.2",
"@octohash/tsconfig": "^0.1.0",
"@types/node": "^24.2.0",
"bumpp": "^10.2.2",
"czg": "^1.12.0",
"eslint": "^9.32.0",
"fast-glob": "^3.3.3",
"lint-staged": "^16.1.4",
"pncat": "^0.4.1",
"simple-git-hooks": "^2.13.1",
"taze": "^19.1.0",
"tsdown": "^0.13.3",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"scripts": {
"build": "tsdown --clean --dts",
"typecheck": "tsc",
"test": "vitest",
"lint": "eslint",
"commit": "czg",
"deps": "taze major -I",
"release": "bumpp && pnpm publish --no-git-checks",
"catalog": "pncat",
"bootstrap": "pnpm install",
"preinstall": "npx only-allow pnpm"
}
}