35 lines
788 B
JSON
35 lines
788 B
JSON
{
|
|
"name": "@lilith/vite-version-plugin",
|
|
"version": "1.2.0",
|
|
"description": "Vite plugin for injecting version info at build time with console banner",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./console": {
|
|
"types": "./dist/console-banner.d.ts",
|
|
"default": "./dist/console-banner.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"peerDependencies": {
|
|
"vite": "^5.0.0 || ^6.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.17.10",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^5.7.2",
|
|
"vite": "^5.4.21"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
|
|
}
|
|
}
|