key-backup/package.json
autocommit edf5ff353f
Some checks failed
Build and Publish / build-and-publish (push) Failing after 45s
deps-upgrade(deps): ⬆️ Update core dependencies to latest stable versions
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 21:11:31 -07:00

69 lines
1.5 KiB
JSON

{
"name": "@lilith/key-backup",
"version": "0.1.0",
"description": "Master key backup and recovery with iCloud Keychain support and optional Shamir secret sharing",
"author": "Lilith Platform",
"license": "UNLICENSED",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"shamir-secret-sharing": "^0.0.4"
},
"devDependencies": {
"@lilith/configs": "workspace:*",
"@types/jest": "^29.5.14",
"@types/node": "^22.19.5",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
},
"repository": {
"type": "git",
"url": "http://forge.black.lan/lilith/packages.git",
"directory": "@ts/key-backup"
},
"keywords": [
"key-backup",
"encryption",
"keychain",
"icloud",
"shamir",
"secret-sharing",
"disaster-recovery"
]
}