-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.83 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
{
"name": "backboard-r-cli",
"version": "3.0.4",
"private": true,
"license": "MIT",
"type": "module",
"module": "src/entrypoints/cli.tsx",
"bin": {
"backboard": "src/entrypoints/cli.tsx"
},
"scripts": {
"dev": "bun run src/entrypoints/cli.tsx",
"test:browser-harness": "bun run scripts/test-browser-harness.ts",
"test:agent-eval": "bun run scripts/agent-eval.ts",
"ep": "bun run scripts/export-prompts.ts",
"prepare": "git config core.hooksPath .githooks",
"precommit": "bun run validate",
"validate": "bun run lint && bun run typecheck && bun run typecheck:scripts && bun test",
"build": "bun run scripts/build.ts",
"build:release": "bun run scripts/build-release.ts",
"typecheck": "bunx tsc --noEmit",
"test": "bun test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck:scripts": "bunx tsc --noEmit -p tsconfig.scripts.json",
"cua:smoke": "bun run scripts/cua-smoke.ts",
"cua:e2e": "BACKBOARD_CUA_E2E=1 bun test tests/MacPlatform.e2e.test.ts",
"cua:grounding": "bun run scripts/cua-eval/grounding.ts",
"cua:eval": "bun run scripts/cua-eval/run.ts",
"verify:providers": "bun run scripts/verify-tool-schemas.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"ink": "^7.0.5",
"ink-text-input": "^6.0.0",
"qrcode": "^1.5.4",
"react": "^19.2.0",
"react-devtools-core": "^6.1.1",
"uri-template": "^2.0.0",
"vscode-jsonrpc": "^9.0.0",
"vscode-languageserver-protocol": "^3.18.1",
"vscode-languageserver-types": "^3.18.0",
"yaml": "^2.9.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@daytona/sdk": "0.207.0",
"@types/bun": "^1.1.10",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.0",
"typescript": "^5.6.3"
}
}