vite-plugin-package-version/package.json

35 lines
822 B
JSON
Raw Normal View History

2021-02-13 20:24:24 +11:00
{
"name": "vite-plugin-package-version",
2021-02-13 20:24:24 +11:00
"license": "MIT",
2021-02-13 20:32:50 +11:00
"description": "vite plugin to load package version into env",
2021-02-14 00:29:21 +11:00
"version": "0.0.3",
2021-02-13 20:24:24 +11:00
"keywords": [
"vite",
"typescript",
2021-02-13 20:32:50 +11:00
"package",
"version",
"environment"
2021-02-13 20:24:24 +11:00
],
"author": "Simon Haugen",
"repository": {
"type": "git",
2021-02-13 20:32:50 +11:00
"url": "git+https://github.com/smnhgn/vite-plugin-package-version.git"
2021-02-13 20:24:24 +11:00
},
"main": "dist/index.js",
"scripts": {
2021-02-13 23:19:22 +11:00
"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",
2021-02-13 23:26:51 +11:00
"prepublishOnly": "npm run build"
2021-02-13 20:24:24 +11:00
},
"peerDependencies": {
2021-02-13 21:38:58 +11:00
"vite": ">=2.0.0-beta.69"
2021-02-13 20:24:24 +11:00
},
"devDependencies": {
"tsup": "^3.12.1",
"typescript": "^4.1.5",
2021-02-13 21:38:58 +11:00
"vite": "^2.0.0-beta.69"
2021-02-13 20:24:24 +11:00
}
}