-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.67 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.67 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@maestro-org/oco",
"version": "0.1.3",
"description": "TypeScript CLI orchestrator for multi-instance OpenClaw deployments",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/maestro-org/oco.git"
},
"homepage": "https://github.com/maestro-org/oco#readme",
"bugs": {
"url": "https://github.com/maestro-org/oco/issues"
},
"type": "commonjs",
"packageManager": "bun@1.3.9",
"bin": {
"oco": "dist/cli.js"
},
"files": [
"dist/**/*",
"inventory/instances.example.yaml",
"inventory/instances.yaml",
"inventory/org.instances.example.yaml",
"inventory/schema.json",
"templates/souls/**/*",
"templates/tools/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "bun test",
"test:coverage": "bun test --coverage --coverage-reporter=text --coverage-reporter=lcov --coverage-dir=coverage",
"check": "bun run typecheck && bun test",
"audit": "bun audit",
"clean": "rm -rf dist",
"prepare": "bun run build",
"install:global": "bun run build && mkdir -p \"$HOME/.bun/bin\" && ln -sf \"$PWD/dist/cli.js\" \"$HOME/.bun/bin/oco\" && chmod +x \"$HOME/.bun/bin/oco\""
},
"engines": {
"node": ">=25.6.1 <26"
},
"dependencies": {
"commander": "^12.1.0",
"json5": "^2.2.3",
"sql.js": "^1.14.0",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
}
}