37 lines
851 B
JSON
37 lines
851 B
JSON
{
|
|
"name": "vite-plugin-package-version",
|
|
"license": "MIT",
|
|
"description": "vite plugin to load package version into env",
|
|
"version": "0.0.4",
|
|
"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",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"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",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"peerDependencies": {
|
|
"vite": ">=2.0.0-beta.69"
|
|
},
|
|
"devDependencies": {
|
|
"tsup": "^3.12.1",
|
|
"typescript": "^4.1.5",
|
|
"vite": "^2.0.0-beta.69"
|
|
}
|
|
}
|