-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.45 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
38
{
"name": "sg-scraper",
"version": "1.0.0",
"main": "main.js",
"repository": "git@github.com:bottleneckco/sg-scraper.git",
"author": "Duncan Leo <hello@duncanleo.me>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "X_BROWSER_HEADFUL=true vite dev",
"build": "CLOUDFLARE_ENV=production vite build",
"dev:scheduled-trigger": "curl http://localhost:5173/cdn-cgi/handler/scheduled?format=json",
"cf-typegen": "wrangler types",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
"check": "biome check AGENTS.md ARCHITECTURE.md README.md docs scripts src package.json tsconfig.json tsconfig.typecheck.json vite.config.ts wrangler.jsonc",
"check:fix": "biome check AGENTS.md ARCHITECTURE.md README.md docs scripts src package.json tsconfig.json tsconfig.typecheck.json vite.config.ts wrangler.jsonc --write",
"validate:harness": "node scripts/validate-agent-harness.mjs",
"validate": "npm run typecheck && npm run check && npm run validate:harness"
},
"devDependencies": {
"@biomejs/biome": "2.5.1",
"@cloudflare/puppeteer": "1.1.0",
"@cloudflare/vite-plugin": "1.42.3",
"@types/geojson": "7946.0.16",
"@types/luxon": "3.7.2",
"@types/mustache": "4.2.6",
"@types/node": "26.0.1",
"typescript": "6.0.3",
"vite": "8.1.0",
"wrangler": "4.105.0"
},
"dependencies": {
"@sentry/cloudflare": "10.59.0",
"luxon": "3.7.2",
"mustache": "4.2.0",
"p-limit": "7.3.0"
}
}