-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 KB
/
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
43
44
45
46
47
48
49
50
51
{
"name": "@creamery/socket.io-rpc",
"version": "1.0.11",
"description": "RPC for SocketIO",
"main": "lib/index.js",
"module": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"start": "node -r ts-node/register demo/rpc.demo.ts",
"build": "npm run clean; tsc",
"watch": "tsc --watch",
"clean": "rimraf ./lib",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@github.com:creamidea/socket.io-rpc.git"
},
"keywords": [
"socketio",
"SocketIO",
"websocket",
"rpc",
"RPC"
],
"author": "creamidea@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/creamidea/socket-io-rpc/issues"
},
"homepage": "https://github.com/creamidea/socket-io-rpc#readme",
"dependencies": {
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"uws": "^100.0.1"
},
"devDependencies": {
"@recore/config": "^2.0.3",
"@types/express": "^4.17.1",
"eslint": "^6.5.1",
"express": "^4.17.1",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
}
}