-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 964 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
35
36
37
38
39
40
{
"name": "@lorefnon/ts-json-rpc",
"version": "3.8.0",
"description": "Lightweight JSON-RPC solution for TypeScript projects",
"keywords": [
"rpc",
"json-rpc",
"typescript"
],
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib && tsc",
"start": "node lib/test/server",
"pretest": "npm run build",
"test": "with-server tap lib/test/client.js",
"prepublishOnly": "npm run build"
},
"contributors": [
"Felix Gnass <[email protected]>",
"Lorefnon <[email protected]> (https://lorefnon.me)"
],
"repository": "lorefnon/ts-json-rpc",
"license": "MIT",
"peerDependencies": {
"zod": "^3.21.4"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/isomorphic-fetch": "0.0.35",
"@types/tap": "^15.0.1",
"express": "^4.17.1",
"isomorphic-fetch": "^3.0.0",
"tap": "^15.0.9",
"typescript": "^4.2.4",
"with-server": "^2.1.0",
"zod": "^3.21.4"
}
}