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
|
{
"name": "@dispatch/core",
"version": "0.0.1",
"private": true,
"type": "module",
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.79",
"@ai-sdk/openai-compatible": "^2.0.48",
"ai": "^6.0.191",
"chokidar": "^5.0.0",
"smol-toml": "^1.6.1",
"tree-sitter-bash": "^0.25.1",
"vscode-jsonrpc": "8.2.1",
"vscode-languageserver-types": "3.17.5",
"web-tree-sitter": "^0.26.8",
"zod": "^3.23.0",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@types/bun": "latest"
}
}
|