-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 722 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 722 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
{
"name": "celestial-updates",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"start": "wrangler dev",
"test": "vitest",
"cf-typegen": "wrangler types",
"publish:prod": "bun scripts/publish.ts",
"publish:staging": "bun scripts/publish.ts --env staging"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.8.19",
"@cloudflare/workers-types": "^4.20241230.0",
"@types/node": "^25.0.9",
"typescript": "^5.5.2",
"vitest": "~3.2.0",
"wrangler": "^4.59.2"
},
"dependencies": {
"@expo/config": "^12.0.13",
"hono": "^4.11.4",
"mime": "^4.1.0",
"readline": "^1.3.0",
"structured-headers": "^2.0.2"
}
}