Some checks failed
Build and Publish / build-and-publish (push) Failing after 44s
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
64 lines
1.4 KiB
JSON
64 lines
1.4 KiB
JSON
{
|
|
"name": "@lilith/restic-setup-client",
|
|
"version": "0.2.0",
|
|
"description": "Configure restic backup clients on workstations with automated systemd timers",
|
|
"author": "Lilith Platform",
|
|
"license": "UNLICENSED",
|
|
"type": "module",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"bin": {
|
|
"restic-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",
|
|
"templates"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"clean": "rm -rf dist",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/vault-setup-client": "workspace:*"
|
|
},
|
|
"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-client"
|
|
},
|
|
"keywords": [
|
|
"restic",
|
|
"backup",
|
|
"workstation",
|
|
"systemd",
|
|
"automation"
|
|
]
|
|
}
|