vite-plugin-app
Version:
Vite plugin for Vue 3 that supports SSG, SSR, and SPA.
74 lines (73 loc) • 1.84 kB
JSON
{
"name": "vite-plugin-app",
"version": "0.0.0",
"packageManager": "pnpm@8.11.0",
"description": "Vite plugin for Vue 3 that supports SSG, SSR, and SPA.",
"author": "Kaivan Wong <kaivanwong@outlook.com>",
"license": "MIT",
"bugs": "https://github.com/kaivanwong/vite-plugin-app/issues",
"keywords": [
"vue",
"vite",
"vite-ssr",
"vite-ssg",
"vite-spa",
"vite-plugin"
],
"sideEffects": false,
"funding": "https://github.com/sponsors/kaivanwong",
"homepage": "https://github.com/kaivanwong/vite-plugin-app#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kaivanwong/vite-plugin-app.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "simple-git-hooks",
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"release": "bumpp"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.3",
"@types/node": "^20.11.10",
"bumpp": "^9.3.0",
"eslint": "npm:eslint-ts-patch@8.56.0-0",
"eslint-ts-patch": "8.56.0-0",
"esno": "^4.0.0",
"lint-staged": "^15.2.0",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm lint:fix"
}
}