-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.25 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
55
56
57
58
59
60
61
62
{
"name": "bscode",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"packageManager": "bun@1.3.14",
"workspaces": [
"apps/*"
],
"scripts": {
"dev:worker": "bun --filter @bscode/worker dev",
"dev:worker:cf": "bun --filter @bscode/worker dev:wrangler",
"dev:web": "bun --filter @bscode/web dev",
"build": "turbo build",
"lint": "biome check apps/",
"lint:fix": "biome check --write apps/",
"format": "biome format --write apps/",
"typecheck": "turbo typecheck",
"deploy:worker": "bun --filter @bscode/worker deploy",
"deploy:web": "bun --filter @bscode/web deploy",
"test": "bun --filter @bscode/worker test",
"test:unit": "bun --filter @bscode/worker test",
"test:e2e": "node scripts/test-full.mjs --url http://localhost:8788",
"test:cli": "node scripts/bscode.mjs",
"test:code": "node scripts/bscode.mjs --mode code --steps 8",
"test:tool": "node scripts/bscode.mjs --mode tool --steps 10",
"test:full": "node scripts/test-full.mjs --url http://localhost:8788",
"link:wasmagent-local": "node scripts/link-wasmagent-local.mjs",
"unlink:wasmagent-local": "node scripts/unlink-wasmagent-local.mjs",
"verify:claims": "node scripts/verify-claims.mjs",
"verify:claims:strict": "node scripts/verify-claims.mjs --strict",
"loop:smoke": "node scripts/loop-smoke.mjs",
"check:no-eval": "node scripts/check-no-eval.mjs"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"turbo": "^2.0.0"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"diff": "^9.0.0"
},
"overrides": {
"@wasmagent/agent-prompts": "^1.0.0",
"@wasmagent/core": "^1.0.1",
"@wasmagent/kernel-pyodide": "^1.0.0",
"@wasmagent/kernel-quickjs": "^1.0.0",
"@wasmagent/kernel-remote": "^1.0.0",
"@wasmagent/mcp-server": "^1.1.0",
"@wasmagent/model-anthropic": "^1.0.0",
"@wasmagent/model-deepseek": "^1.0.0",
"@wasmagent/model-doubao": "^1.0.0",
"@wasmagent/model-openai": "^1.0.0",
"@wasmagent/model-zhipu": "^1.0.0",
"@wasmagent/react": "^1.0.2",
"@wasmagent/tools-browser": "^1.0.0",
"@wasmagent/tools-rag": "^1.0.0",
"@wasmagent/ui-cards": "^1.0.0",
"@wasmagent/ui-cards-react": "^1.0.0"
}
}