vault-setup-client/package.json
Lilith edb1b81cbf
Some checks failed
Build and Publish / build-and-publish (push) Failing after 46s
deps-upgrade(deps): ⬆️ Update key dependencies including react, react-dom, and others to latest stable versions
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-08 19:22:13 -07:00

62 lines
1.3 KiB
JSON

{
"name": "@lilith/vault-setup-client",
"version": "0.1.0",
"description": "Vault symlink management and macOS Keychain integration for secrets",
"author": "Lilith Platform",
"license": "UNLICENSED",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"vault-setup-client": "./dist/cli.js"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"scripts"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^22.19.5",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"publishConfig": {
"registry": "http://forge.black.local/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
},
"repository": {
"type": "git",
"url": "http://forge.black.local/lilith/packages.git",
"directory": "@infrastructure/vault-setup-client"
},
"keywords": [
"vault",
"secrets",
"keychain",
"macos",
"security"
]
}