-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 911 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
41
42
{
"name": "rpc-with-types",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hashelq/rpc-ts.git"
},
"description": "TypeScript Remote-procedure-call Framework",
"version": "4.0.2",
"keywords": [
"rpc",
"typescript",
"websockets",
"ws",
"framework"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc --esModuleInterop",
"do-publish": "npm run build && npm publish",
"test": "tsc --esModuleInterop && mocha ./dist/tests.js"
},
"dependencies": {
"fp-ts": "^2.16.0",
"io-ts": "^2.2.20",
"isomorphic-ws": "^5.0.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/ws": "^8.5.5",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"typescript": "^5.3.3"
}
}