-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.16 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
39
40
41
42
43
44
45
46
47
{
"name": "electerm-sync-server-cloudflare",
"version": "1.0.0",
"description": "Electerm sync server using Cloudflare Workers and D1 database",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "wrangler dev",
"deploy": "wrangler deploy",
"lint": "./node_modules/.bin/ts-standard",
"fix": "./node_modules/.bin/ts-standard --fix",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"electerm",
"sync",
"cloudflare",
"workers",
"d1"
],
"author": {
"name": "ZHAO Xudong",
"email": "zxdong@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.20250620.0",
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.3.1",
"@types/node-fetch": "^2.6.12",
"node-fetch": "^3.3.2",
"ts-standard": "^12.0.2",
"typescript": "^5.1.3",
"vitest": "^3.2.4",
"vitest-environment-miniflare": "^2.14.4",
"wrangler": "^4.20.5"
},
"dependencies": {
"drizzle-orm": "^0.44.2",
"itty-router": "^5.0.18",
"jose": "^6.0.11",
"jsonwebtoken": "^9.0.0"
}
}