forked from forthfate/openorbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 689 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "openorbit",
"version": "0.6.0",
"description": "Open control plane for recurring AI automations",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@12.3.4",
"bin": {
"orbit": "bin/orbit.mjs",
"openorbit": "bin/orbit.mjs"
},
"workspaces": ["frontend"],
"scripts": {
"run": "node bin/orbit.mjs run",
"build": "pnpm --filter agent-improvement-console-ui run build",
"check": "pnpm --filter agent-improvement-console-ui run build",
"prepack": "pnpm run build"
},
"files": ["bin/", "backend/", "frontend/", "orbit/", "config/", "workflows/", "pyproject.toml", "README.md", "LICENSE"]
}