-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 852 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 852 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
25
26
27
28
29
30
31
32
33
{
"name": "otel-spec-tracker",
"private": true,
"type": "module",
"scripts": {
"ingest": "bun run src/ingest/main.ts",
"test": "bun test",
"typecheck": "tsc --noEmit && astro check",
"dev": "astro dev --port 4321",
"build": "astro build",
"preview": "astro preview --port 4321",
"sync": "astro sync",
"deploy": "bun run build && wrangler deploy",
"worker:dev": "bun run build && wrangler dev"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.4",
"@effect/platform": "^0.97.1",
"@effect/platform-bun": "^0.91.2",
"@tailwindcss/vite": "^4.3.3",
"astro": "^7.2.10",
"effect": "^3.19.4",
"tailwindcss": "^4.3.3",
"yaml": "^2.8.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"@cloudflare/workers-types": "^5.20260903.1",
"@types/bun": "^1.3.11",
"typescript": "^5.9.3",
"wrangler": "^4.128.0"
}
}