-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 736 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 736 Bytes
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
{
"name": "@statecraft/net",
"version": "0.1.1",
"description": "Statecraft network server & client",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.js",
"author": "Seph Gentle <me@josephg.com>",
"license": "ISC",
"scripts": {
"prepare": "npm run build",
"build": "tsc"
},
"browser": {
"./dist/lib/tcpserver.js": false,
"./dist/lib/wsserver.js": false,
"./dist/lib/tcpclient.js": false
},
"dependencies": {
"@statecraft/core": "^0.1.1",
"@josephg/resolvable": "^1.0.0",
"isomorphic-ws": "^4.0.1",
"ministreamiterator": "^1.0.0",
"ws": "^7.4.6"
},
"devDependencies": {
"@types/node": "^11.13.0",
"@types/ws": "^6.0.1",
"typescript": "^3.4.2"
}
}