-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "coolify-backup-manager",
"version": "1.2.0",
"private": true,
"description": "Self-hostable backup & restore manager for Coolify (controller + agents).",
"workspaces": [
"packages/shared",
"packages/agent",
"packages/controller"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build:shared": "npm run build --workspace @cbm/shared",
"build": "npm run build --workspace @cbm/shared && npm run build --workspace @cbm/agent && npm run build --workspace @cbm/controller",
"test": "npm run test --workspace @cbm/shared && npm run test --workspace @cbm/agent && npm run test --workspace @cbm/controller",
"lint": "eslint .",
"typecheck": "npm run build:shared && tsc --noEmit -p packages/agent/tsconfig.json && tsc --noEmit -p packages/controller/tsconfig.json",
"dev:controller": "npm run dev --workspace @cbm/controller",
"dev:agent": "npm run dev --workspace @cbm/agent"
},
"devDependencies": {
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.9"
}
}