-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
36 lines (36 loc) · 871 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
{
"name": "typed-rpc",
"version": "5.1.0",
"description": "Lightweight JSON-RPC solution for TypeScript projects",
"keywords": [
"rpc",
"json-rpc",
"typescript"
],
"main": "./lib/client.js",
"files": [
"lib",
"server",
"express"
],
"scripts": {
"build": "rm -rf lib && tsc && cp src/*.d.ts lib",
"start": "node lib/test/server",
"pretest": "npm run build",
"test": "with-server tap lib/test/client.js",
"prepare": "npm run build"
},
"author": "Felix Gnass <fgnass@gmail.com>",
"repository": "fgnass/typed-rpc",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/isomorphic-fetch": "0.0.39",
"@types/tap": "^15.0.11",
"express": "^4.19.2",
"isomorphic-fetch": "^3.0.0",
"tap": "^19.0.2",
"typescript": "^5.4.5",
"with-server": "^2.1.0"
}
}