restic-setup-server/package.json
autocommit 6d661f7352
Some checks failed
Build and Publish / build-and-publish (push) Failing after 40s
deps-upgrade(config): ⬆️ Update config-related dependencies to latest stable versions
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-11 01:20:37 -07:00

62 lines
1.3 KiB
JSON

{
"name": "@lilith/restic-setup-server",
"version": "0.1.1",
"description": "Deploy restic REST server on devops hosts for centralized backup infrastructure",
"author": "Lilith Platform",
"license": "UNLICENSED",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"restic-setup-server": "./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",
"templates"
],
"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.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-setup-server"
},
"keywords": [
"restic",
"backup",
"infrastructure",
"devops",
"rest-server"
]
}