-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 858 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
{
"name": "blue-rpc-protocol",
"version": "1.0.0",
"description": "A fast RPC protocol that uses WebSockets and MessagePack",
"author": "Joshua Wise <[email protected]>",
"homepage": "http://github.com/JoshuaWise/blue-rpc-protocol",
"repository": {
"type": "git",
"url": "git://github.com/JoshuaWise/blue-rpc-protocol.git"
},
"license": "MIT",
"main": "src/nodejs/index.js",
"browser": "src/web/index.js",
"types": "src/types.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack"
},
"dependencies": {
"tiny-msgpack": "^2.0.2",
"ws": "^8.12.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.7"
},
"devDependencies": {
"@types/ws": "^8.5.4",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}