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
25 lines (25 loc) · 987 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 987 Bytes
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
{
"name": "openorbit",
"version": "0.8.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 run docs:build && pnpm --filter agent-improvement-console-ui run build",
"docs:build": "uv tool run --from 'mkdocs>=1.6' --with 'mkdocs-material>=9.6' --with 'mkdocstrings[python]>=0.28' mkdocs build --strict",
"docs:serve": "uv tool run --from 'mkdocs>=1.6' --with 'mkdocs-material>=9.6' --with 'mkdocstrings[python]>=0.28' mkdocs serve",
"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"]
}