@buildappolis/env-manager
Version:
Enterprise-grade environment variable management system with encryption, snapshots, and validation
103 lines • 2.71 kB
JSON
{
"name": "@buildappolis/env-manager",
"version": "1.4.12",
"description": "Enterprise-grade environment variable management system with encryption, snapshots, and validation",
"main": "index.ts",
"types": "index.ts",
"type": "module",
"bin": {
"env-manager": "./bin/env-manager-cli.mjs"
},
"exports": {
".": {
"types": "./index.ts",
"import": "./index.ts",
"require": "./index.ts"
},
"./types": {
"types": "./src/types.ts",
"import": "./src/types.ts"
},
"./client": {
"types": "./src/lib/env-manager.ts",
"import": "./src/lib/env-manager.ts"
}
},
"files": [
"bin",
"dist",
"src",
"types.ts",
"index.ts",
"LICENSE",
"README.md",
"CHANGELOG.md",
"VERSION"
],
"dependencies": {
"@astrojs/node": "^8.0.0",
"@astrojs/react": "^4.3.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@tailwindcss/postcss": "^4.1.12",
"@tailwindcss/vite": "^4.1.12",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"astro": "^4.0.0",
"better-sqlite3": "^9.2.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commander": "^11.1.0",
"framer-motion": "^12.23.12",
"jiti": "^2.5.1",
"lucide-react": "^0.540.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.12",
"tw-animate-css": "^1.3.7",
"typescript": "^5.0.0",
"uuid": "^11.1.0",
"ws": "^8.16.0"
},
"optionalDependencies": {
"open": "^10.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.10",
"npm-cli-login": "^1.0.0"
},
"keywords": [
"environment",
"variables",
"env-manager",
"configuration",
"secrets",
"encryption",
"buildappolis"
],
"author": "BuildAppolis <dev@buildappolis.com> (www.buildappolis.com)",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/buildappolis/env-manager",
"repository": {
"type": "git",
"url": "git+https://github.com/buildappolis/env-manager.git"
},
"bugs": {
"url": "https://github.com/buildappolis/env-manager/issues"
},
"scripts": {
"dev": "astro dev",
"start": "node dist/server/entry.mjs",
"build": "astro build",
"preview": "astro preview",
"serve": "npm run build && npm run start",
"version:patch": "node scripts/bump-version.js patch",
"version:minor": "node scripts/bump-version.js minor",
"version:major": "node scripts/bump-version.js major"
}
}