-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.16 KB
/
package.json
File metadata and controls
39 lines (39 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
{
"name": "@depot/connectrpc-workers",
"version": "2.0.0",
"type": "module",
"description": "Connect RPC adapter for Cloudflare Workers",
"repository": "https://github.com/depot/connectrpc-workers.git",
"homepage": "https://github.com/depot/connectrpc-workers",
"author": "Jacob Gillespie <jacobwgillespie@gmail.com>",
"license": "MIT",
"packageManager": "pnpm@10.10.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"keywords": ["connectrpc", "cloudflare", "workers"],
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean",
"clean": "rm -rf dist",
"lint": "biome check",
"lint:fix": "biome check --fix",
"prepack": "pnpm run build",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"@bufbuild/protobuf": ">=2.0.0 <3.0.0",
"@cloudflare/workers-types": "*",
"@connectrpc/connect": ">=2.0.0 <3.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cloudflare/workers-types": "^4.20250502.0",
"@connectrpc/connect": "^2.0.2",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false
}