-
Notifications
You must be signed in to change notification settings - Fork 629
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.68 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
{
"name": "openbot",
"version": "0.0.12",
"license": "MIT",
"private": true,
"packageManager": "bun@1.3.14",
"workspaces": [
"app",
"server",
"worker"
],
"scripts": {
"build": "bun run generate:app-config && bun run --filter '*' build",
"dev": "bun run generate:app-config && bun run --filter app --filter server --parallel dev",
"generate:app-config": "bun --env-file=.env scripts/generate-app-config.ts",
"format": "bunx biome format --write .",
"format:check": "bunx biome format .",
"lint": "bunx biome lint --error-on-warnings .",
"test": "bun test",
"typecheck": "bun run --filter '*' typecheck",
"test:ci": "bun scripts/test-ci.ts",
"pretest": "bun run generate:app-config",
"test:smoke": "OPENBOT_SMOKE=1 bun test tests/smoke",
"test:live-screen": "OPENBOT_LIVE_SCREEN=1 bun test agent-computer/tests/live-screen.test.ts agent-computer/tests/browser-close-announcement.test.ts",
"test:live-composio": "bun -e \"if (!process.env.COMPOSIO_API_KEY?.trim()) { console.error('COMPOSIO_API_KEY is empty or unset, so every case in this suite would skip and this command would still exit 0. Run it as COMPOSIO_API_KEY=... bun run test:live-composio.'); process.exit(1) }\" && OPENBOT_LIVE_COMPOSIO=1 bun test server/tests/composio-live.test.ts",
"diagram": "bun scripts/architecture-diagram.ts",
"composio:smoke": "bun scripts/composio-smoke.ts",
"mock:knowledge": "bun scripts/mock-knowledge-mcp.ts"
},
"devDependencies": {
"@biomejs/biome": "2.5.10",
"@copilotkit/aimock": "1.39.0",
"@types/bun": "^1.3.3",
"roughjs": "^4.6.6",
"typescript": "^5.9.3",
"yaml": "^2.9.0"
},
"dependencies": {}
}