vite-plugins/plugin-bundle-encrypt/package.json

51 lines
1.1 KiB
JSON

{
"name": "@lilith/vite-plugin-bundle-encrypt",
"version": "1.0.0",
"description": "AES-256-GCM bundle encryption for Vite production builds with PBKDF2 password gate",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"vite-bundle-encrypt": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"devDependencies": {
"@types/node": "^22.15.27",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^2.1.0"
},
"keywords": [
"vite",
"plugin",
"encryption",
"aes-256-gcm",
"password-protection",
"bundle-encrypt"
],
"author": "Lilith Platform",
"license": "MIT",
"publishConfig": {
"registry": "http://forge.black.local/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}