-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.23 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
{
"name": "snorkel-automation-workflow",
"private": true,
"version": "0.1.0",
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "tsc -b",
"typecheck": "tsc -b --noEmit false",
"test": "node --test --experimental-strip-types packages/shared/test/*.test.ts",
"worker": "node --experimental-strip-types apps/worker/src/index.ts",
"preflight": "node --experimental-strip-types apps/worker/src/preflight.ts",
"verify:task": "node --experimental-strip-types apps/worker/src/cli/verify-task.ts",
"summary:build": "node --experimental-strip-types scripts/build-summary.ts",
"selectors:record": "node --experimental-strip-types apps/worker/src/browser/record.ts",
"feedback:fix": "node --experimental-strip-types scripts/feedback-fix.ts",
"worker:supervised": "bash scripts/worker.sh"
},
"devDependencies": {
"@types/archiver": "^6.0.4",
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
"@supabase/supabase-js": "^2.47.10",
"archiver": "^7.0.1",
"dotenv": "^16.4.7",
"playwright": "^1.49.1",
"smol-toml": "^1.3.1",
"x11": "^2.3.0",
"zod": "^3.24.1"
}
}