-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"name": "shopfloor",
"version": "2.0.8",
"private": true,
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "node esbuild.config.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:live": "vitest run --reporter=verbose test/agents/claude.live.test.ts",
"smoke": "tsx scripts/smoke/index.ts",
"typecheck": "tsc --noEmit",
"lint": "biome check",
"format": "biome check --write --unsafe"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@anthropic-ai/claude-agent-sdk": "^0.2.141",
"@modelcontextprotocol/sdk": "^1.29.0",
"@octokit/auth-app": "^7.1.5",
"@octokit/rest": "^21.0.2",
"@openai/codex": "^0.139.0",
"@openai/codex-sdk": "^0.139.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/node": "^22.10.0",
"chalk": "^5.6.2",
"dotenv": "^17.4.2",
"esbuild": "^0.24.0",
"prettier": "^3.3.3",
"tsx": "^4.22.1",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
}
}