-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 951 Bytes
/
package.json
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
{
"name": "idempotent-proxy-cf-worker",
"version": "1.2.2",
"publish": false,
"description": "Reverse proxy server with build-in idempotency support runing as a Cloudflare Worker.",
"homepage": "https://github.com/ldclabs/idempotent-proxy/tree/main/src/idempotent-proxy-cf-worker",
"scripts": {
"deploy": "wrangler deploy src/index.ts",
"dev": "wrangler dev",
"start": "wrangler dev",
"test": "vitest run"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241018.0",
"@types/eslint": "^9.6.1",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vitest": "^2.1.3",
"wrangler": "^3.81.0"
},
"dependencies": {
"@noble/curves": "^1.6.0",
"@noble/hashes": "^1.5.0",
"cborg": "^4.2.4"
}
}