-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 900 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 900 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
34
{
"name": "subscription-manager",
"version": "3.0.0",
"description": "订阅管理系统 - 基于 Cloudflare Workers + Hono",
"main": "src/index.js",
"type": "module",
"scripts": {
"build": "echo 'No build step required for Workers runtime'",
"setup": "node scripts/setup-kv.cjs",
"deploy": "npx wrangler deploy",
"deploy:safe": "npm run setup && npm run deploy",
"lint": "tsc --noEmit -p jsconfig.json",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"hono": "^4.6.14"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.5.40",
"@cloudflare/workers-types": "^4.20241218.0",
"typescript": "^5.7.2",
"vitest": "~2.1.9",
"wrangler": "^3.99.0"
},
"keywords": [
"cloudflare-workers",
"subscription-management",
"notification",
"lunar-calendar",
"hono"
],
"license": "MIT"
}