-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 746 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "tavern-study",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-or-later",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"typecheck": "tsc --noEmit",
"test": "node --test tests/*.test.ts",
"build": "node scripts/run-wrangler.mjs deploy --dry-run --outdir dist",
"release:check": "npm run typecheck && npm test && npm run build && node scripts/release-hygiene.mjs",
"db:init:local": "wrangler d1 execute tavern-study --local --file examples/cloudflare/schema/init.sql",
"db:migrate:local": "wrangler d1 migrations apply tavern-study --local"
},
"devDependencies": {
"@cloudflare/workers-types": "5.20260731.1",
"typescript": "^5.8.3",
"wrangler": "^4.26.1"
}
}