-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 777 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "@garcon/integration-tests",
"private": true,
"type": "module",
"scripts": {
"test": "bun run test:server",
"test:server": "bun test --max-concurrency=1 --timeout=30000 tests/server",
"test:e2e": "bun test --max-concurrency=1 --timeout=60000 tests/e2e",
"test:live": "bun run test:live:claude && bun run test:live:codex",
"test:live:claude": "bun test --max-concurrency=1 --timeout=120000 tests/live/claude",
"test:live:codex": "bun test --max-concurrency=1 --timeout=240000 tests/live/codex",
"typecheck": "bunx tsc -p tsconfig.json"
},
"devDependencies": {
"@anthropic-ai/claude-code": "2.1.220",
"@openai/codex": "0.144.6",
"@types/bun": "1.3.14",
"puppeteer-core": "25.3.0",
"typescript": "7.0.2"
}
}