forked from JoCat/modern-isomorphic-ws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 853 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
{
"name": "modern-isomorphic-ws",
"version": "1.0.1",
"description": "Modern isomorphic implementation of WebSocket",
"type": "module",
"main": "node.js",
"exports": {
"browser": "./browser.js",
"import": "./index.js",
"require": "./node.js"
},
"browser": "browser.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/JoCat/modern-isomorphic-ws.git"
},
"keywords": [
"browser",
"node",
"websocket",
"ws",
"isomorphic"
],
"author": "JoCat",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoCat/modern-isomorphic-ws/issues"
},
"homepage": "https://github.com/JoCat/modern-isomorphic-ws#readme",
"peerDependencies": {
"ws": "^8.7"
}
}