forked from acelab-usa/Acelab-x-Structured-AI-Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 904 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "aec-hackathon-grader",
"version": "1.0.0",
"private": true,
"description": "Submission runner, grader, and leaderboard for the Acelab x Structured AI AEC Hackathon",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"typecheck": "tsc --noEmit",
"db:local": "wrangler d1 execute aec-hackathon --local --file=./schema.sql",
"db:remote": "wrangler d1 execute aec-hackathon --remote --file=./schema.sql",
"sample:serve": "bash scripts/serve-sample.sh",
"validate:datasets": "node scripts/validate-dataset.mjs assets/datasets/test && node scripts/validate-dataset.mjs assets/datasets/validation",
"keys": "node scripts/openrouter-keys.mjs"
},
"dependencies": {
"@cloudflare/sandbox": "^0.12.7"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250823.0",
"typescript": "^5.9.2",
"wrangler": "^4.125.0"
}
}