forked from CopilotKit/OpenBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.1 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
{
"name": "openbot",
"version": "0.0.4",
"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 '*' --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",
"diagram": "bun scripts/architecture-diagram.ts",
"mock:knowledge": "bun scripts/mock-knowledge-mcp.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@copilotkit/aimock": "1.39.0",
"@types/bun": "^1.3.3",
"roughjs": "^4.6.6",
"typescript": "^5.9.3",
"yaml": "^2.9.0"
},
"dependencies": {}
}