vite-plugins/plugin-netlify-password/package.json

51 lines
1.1 KiB
JSON

{
"name": "@lilith/vite-plugin-netlify-password",
"version": "1.0.0",
"description": "Netlify build plugin — password-protect any Vite site on the free tier with AES-256-GCM encryption",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"manifest.yml"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"@lilith/vite-plugin-bundle-encrypt": "workspace:*"
},
"devDependencies": {
"@types/node": "^22.15.27",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^2.1.0"
},
"keywords": [
"netlify",
"plugin",
"password",
"encryption",
"vite"
],
"author": "Lilith Platform",
"license": "MIT",
"publishConfig": {
"registry": "http://forge.black.local/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}