forked from colbymchenry/codegraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 911 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "codegraph-telemetry-worker",
"private": true,
"description": "First-party ingest endpoint for codegraph's anonymous usage telemetry (telemetry.getcodegraph.com)",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"types": "wrangler types",
"check": "wrangler types && tsc --noEmit && wrangler deploy --dry-run",
"smoke": "./scripts/smoke-ingest.sh",
"smoke:rollup": "./scripts/smoke-rollup.sh",
"smoke:cutover": "./scripts/smoke-cutover.sh",
"db:migrate:local": "wrangler d1 migrations apply codegraph-telemetry --local",
"db:migrate": "wrangler d1 migrations apply codegraph-telemetry --remote",
"db:migrations": "wrangler d1 migrations list codegraph-telemetry --remote",
"db:sql": "wrangler d1 execute codegraph-telemetry --remote --command"
},
"devDependencies": {
"typescript": "^5.0.0",
"wrangler": "^4.36.0"
}
}