-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.51 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@depot/connectrpc-workers",
"version": "1.2.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 <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"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",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"prepack": "pnpm run build",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"@bufbuild/protobuf": ">=1.10.0 <2.0.0",
"@cloudflare/workers-types": "*",
"@connectrpc/connect": ">=1.5.0 <2.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240925.0",
"@connectrpc/connect": "^1.5.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-pkg": "^0.18.1",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"prettier": {
"bracketSpacing": false,
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"plugins": [
"prettier-plugin-pkg",
"prettier-plugin-organize-imports"
]
}
}