vite-plugin-package-version/package.json

36 lines
861 B
JSON

{
"name": "vite-plugin-package-version",
"license": "MIT",
"description": "vite plugin to load package version into env",
"version": "0.0.1",
"keywords": [
"vite",
"typescript",
"package",
"version",
"environment"
],
"author": "Simon Haugen",
"repository": {
"type": "git",
"url": "git+https://github.com/smnhgn/vite-plugin-package-version.git"
},
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsup src/index.ts --dts",
"dev": "tsup src/index.ts --dts --watch",
"dev:client": "npm -C example run dev",
"postinstall": "cd example && npm install"
},
"peerDependencies": {
"vite": ">=2.0.0-beta.69"
},
"devDependencies": {
"concurrently": "^5.3.0",
"tsup": "^3.12.1",
"typescript": "^4.1.3",
"vite": "^2.0.0-beta.69"
}
}