-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.72 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
{
"name": "codegraph",
"private": true,
"version": "0.0.0",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r dev",
"lint": "biome check .",
"format": "biome format --write .",
"test": "vitest run",
"test:watch": "vitest",
"bench": "vitest bench",
"bench:run": "vitest bench --run",
"eval:mcp": "tsx --env-file=.env scripts/eval-mcp-vs-direct.ts",
"eval:mcp:antilist": "tsx --env-file=.env scripts/eval-mcp-vs-direct.ts --preset antilist --repo /Users/ceteralabs/Documents/Projects/antilist --via-mcp-server",
"eval:mcp:antilist:openai": "tsx --env-file=.env scripts/eval-mcp-vs-direct.ts --preset antilist --repo /Users/ceteralabs/Documents/Projects/antilist --via-mcp-server --provider openai --delay 65000",
"eval:mcp:antilist:compare": "tsx --env-file=.env scripts/eval-mcp-vs-direct.ts --preset antilist --repo /Users/ceteralabs/Documents/Projects/antilist --via-mcp-server --compare-providers --delay 65000",
"smoke": "pnpm smoke:tree-sitter && pnpm smoke:mcp",
"smoke:tree-sitter": "tsx scripts/smoke-tree-sitter.ts",
"smoke:mcp": "tsx scripts/smoke-mcp.ts",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/google": "^1.2.22",
"@ai-sdk/openai": "^1.3.24",
"@biomejs/biome": "^1.9.4",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/node": "^22.15.0",
"ai": "^4.3.19",
"ollama-ai-provider": "^1.2.0",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vitest": "^3.2.1",
"zod": "^3.25.76"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"esbuild",
"kuzu"
]
}
}