-
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.34 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.34 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": "ship-agent",
"version": "0.0.1",
"private": true,
"description": "Standalone Shipyard coding agent for E2E benchmarking",
"type": "module",
"main": "./dist/index.js",
"scripts": {
"dev": "tsx src/index.ts",
"dev:watch": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"lint": "tsc --noEmit",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:flake": "./scripts/flake-check.sh",
"bench": "./scripts/bench.sh",
"truth:update": "tsx scripts/update-run-truth.ts",
"load:test": "tsx scripts/load-test.ts",
"done:check": "./scripts/done-gate.sh"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"@langchain/core": "^1.1.32",
"@langchain/langgraph": "^1.2.2",
"@langchain/langgraph-checkpoint-postgres": "^1.0.1",
"dotenv": "^17.3.1",
"express": "^4.21.2",
"fast-glob": "^3.3.3",
"fastest-levenshtein": "^1.0.16",
"langsmith": "^0.5.10",
"openai": "^5.23.2",
"pg": "^8.13.1",
"uuid": "^11.0.3",
"ws": "^8.18.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.19.3",
"@types/pg": "^8.11.10",
"@types/ws": "^8.5.13",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.0.16"
}
}