-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.11 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": "use-ws",
"version": "0.7.5",
"description": "A pretty custom hooks for websocket and react",
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"compile": "tsc ./src/index.ts --jsx react --declaration --outDir ./dist",
"clean": "rimraf dist",
"build": "npm run clean && npm run compile",
"publisher": "npm run build && npm publish"
},
"dependencies": {
"eventemitter3": "^3.1.0"
},
"homepage": "https://github.com/Danue1/use-ws",
"repository": "Danue1/use-ws",
"bugs": "https://github.com/Danue1/use-ws/issues",
"keywords": [
"react",
"react-dom",
"websocket",
"react-hooks",
"hooks",
"custom hooks",
"react-websocket",
"event",
"events",
"emitter",
"event-emitter",
"react-event",
"subscribe",
"publish",
"listener",
"event-listener",
"once",
"emit",
"addListener",
"addEventListener",
"ping",
"pong",
"pingpong",
"heartbeat"
],
"devDependencies": {
"@types/react": "^16.8.8",
"rimraf": "^2.6.3",
"typescript": "^3.3.3333"
}
}