-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 861 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
33
34
{
"name": "trpc-errormap",
"version": "0.0.4",
"description": "Map regular HTTP status codes to their corresponding tRPC error code.",
"private": false,
"repository": "https://github.com/ahkhanjani/trpc-errormap",
"homepage": "https://github.com/ahkhanjani/trpc-errormap",
"author": {
"name": "Amir H. Khanjani",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"trpc",
"http",
"status"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"release": "pnpm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@trpc/server": "^10.0.0"
}
}