restic-restore/package.json
autocommit 05ca895a97
Some checks failed
Build and Publish / build-and-publish (push) Failing after 41s
deps-upgrade(dependencies): ⬆️ Update all dependencies to latest stable versions for bug fixes and improvements
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-11 01:19:51 -07:00

61 lines
1.3 KiB
JSON

{
"name": "@lilith/restic-restore",
"version": "0.1.0",
"description": "Restore workstation backups from restic REST server for disaster recovery",
"author": "Lilith Platform",
"license": "UNLICENSED",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"restic-restore": "./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": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@lilith/configs": "workspace:*",
"@types/node": "^22.19.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": "@infrastructure/restic-restore"
},
"keywords": [
"restic",
"backup",
"restore",
"disaster-recovery",
"workstation"
]
}