-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 811 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "noodle-map",
"private": true,
"type": "module",
"scripts": {
"api:generate": "npm run tsp:compile && openapi-typescript api/openapi.yaml -o web/src/generated/api.ts && cd server && go generate ./api",
"api:check": "npm run tsp:check && openapi-typescript api/openapi.yaml -o web/src/generated/api.ts --check",
"db:schema:dump": "cd server && go run ./cmd/dump-schema -out data/sql/schema/current",
"sync-agents": "node scripts/sync-agents.mjs",
"tsp:compile": "tsp compile typespec",
"tsp:check": "tsp compile typespec --no-emit"
},
"devDependencies": {
"@typespec/compiler": "^1.12.0",
"@typespec/http": "^1.12.0",
"@typespec/openapi3": "^1.12.0",
"openapi-typescript": "^7.13.0"
},
"volta": {
"node": "22.12.0",
"npm": "10.9.2"
}
}