-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 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
48
49
50
51
{
"name": "@hadeeb/trpc-worker",
"version": "0.1.0",
"description": "Run tRPC in a web worker",
"type": "module",
"sideEffects": false,
"scripts": {
"prepublishOnly": "npm run build",
"build": "rollup -c"
},
"keywords": ["trpc", "worker", "web worker", "electron"],
"author": "Hadeeb Farhan",
"license": "MIT",
"peerDependencies": {
"@trpc/client": "^10.0.0 || ^11.0.0",
"@trpc/server": "^10.0.0 || ^11.0.0"
},
"files": ["src", "dist"],
"exports": {
"./adapter": {
"types": "./dist/adapter.d.ts",
"import": "./dist/adapter.js",
"require": "./dist/adapter.cjs"
},
"./link": {
"types": "./dist/link.d.ts",
"import": "./dist/link.js",
"require": "./dist/link.cjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/hadeeb/trpc-worker.git"
},
"bugs": {
"url": "https://github.com/hadeeb/trpc-worker/issues"
},
"homepage": "https://github.com/hadeeb/trpc-worker#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@trpc/client": "^11.0.0",
"@trpc/server": "^11.0.0",
"@types/node": "^22.13.11",
"@types/ws": "^8.18.0",
"electron": "^34.3.4",
"rollup": "^4.36.0",
"typescript": "^5.8.2"
},
"packageManager": "pnpm@10.4.1"
}