-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 3.14 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
63
64
65
66
{
"name": "web-agent",
"private": true,
"version": "0.0.78",
"type": "module",
"scripts": {
"build:embed-runtime": "node scripts/build-embed-runtime.mjs",
"watch:embed-runtime": "node scripts/build-embed-runtime.mjs --watch",
"dev": "npm run build:embed-runtime && concurrently -k \"npm:watch:embed-runtime\" \"vite\"",
"build": "npm run build:embed-runtime && npm run check:models && tsc -b && vite build",
"check:models": "node scripts/check-models.mjs",
"preview": "vite preview",
"cors-proxy-server": "node scripts/cors-proxy-server.mjs",
"test": "npm run build:embed-runtime && tsx --test tests/*.test.ts",
"test:tool-guardrails-benchmark": "npm run build:embed-runtime && tsx --test tests/tool-guardrails-benchmark.test.ts",
"test:quality-benchmark": "npm run build:embed-runtime && tsx --test tests/tool-guardrails-benchmark.test.ts tests/tool-argument-repair-benchmark.test.ts tests/loop-recovery-benchmark.test.ts tests/tool-registry-preparation.test.ts tests/turn-continuation.test.ts tests/turn-stall-integration.test.ts tests/tool-argument-normalization.test.ts",
"test:turn-stall": "npm run build:embed-runtime && tsx --test tests/turn-stall-integration.test.ts tests/hermes-streaming-ports.test.ts tests/streaming-sanitize.test.ts tests/turn-continuation.test.ts",
"test:turn-stall:browser": "PLAYWRIGHT_BROWSERS_PATH=0 playwright test tests/turn-stall.spec.ts",
"test:tools": "node scripts/run-tool-smoke.mjs",
"test:tools:network": "node scripts/run-tool-smoke.mjs --network",
"test:composio-catalog": "npm run build:embed-runtime && tsx --test tests/composio-catalog-live.test.ts tests/composio-marketing-actions.test.ts",
"test:browser": "PLAYWRIGHT_BROWSERS_PATH=0 playwright test",
"test:browser:headed": "PLAYWRIGHT_BROWSERS_PATH=0 playwright test --headed",
"download:whisper": "node scripts/download-whisper-model.mjs",
"audit:skills": "npm run build:embed-runtime && node scripts/audit-skill-compat.mjs tmp/repos/sample-skills/skills"
},
"dependencies": {
"@codesandbox/nodebox": "^0.1.9",
"@huggingface/transformers": "^3.8.1",
"@mdit/plugin-katex": "^0.25.2",
"@mdit/plugin-mark": "^0.23.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/xterm": "^5.5.0",
"docx-preview": "^0.3.7",
"highlight.js": "^11.11.1",
"idb-keyval": "^6.2.1",
"katex": "^0.17.0",
"lucide-react": "^0.474.0",
"markdown-it": "^14.1.1",
"markdown-it-task-lists": "^2.1.1",
"mermaid": "^11.15.0",
"pptx-preview": "^1.0.7",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sql.js": "^1.12.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/vite": "^4.1.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.6.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"concurrently": "^9.2.1",
"dotenv": "^17.4.2",
"edge-tts-universal": "^1.4.0",
"tailwindcss": "^4.1.7",
"tsx": "^4.21.0",
"typescript": "^5.8.3",
"vite": "^6.3.4"
}
}