-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "react-socket-store",
"version": "0.0.4",
"description": "It is for easily using Websocket in React.It inspired by React-redux.",
"keywords": [
"react",
"websocket",
"socket store",
"react-websocket"
],
"author": "nerdchanii <nerdchanii@gmail.com>",
"license": "MIT",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"lib/*"
],
"directories": {
"example": "example"
},
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nerdchanii/react-socket-store.git"
},
"bugs": {
"url": "https://github.com/nerdchanii/react-socket-store/issues"
},
"homepage": "https://github.com/nerdchanii/react-socket-store",
"dependencies": {
"socket-store": "^0.0.2"
}
}