-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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": "socket.io-client-store",
"version": "0.0.2",
"description": "It is a store for socket.io-client. It makes it easy to use socket.io client. It inspired from Redux",
"author": "nerdchanii <[email protected]>",
"license": "MIT",
"types": "./dist/esm/index.d.ts",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"files": [
"dist/*"
],
"directories": {
"example": "example"
},
"keywords": [
"websocket",
"store",
"socket.io-client store",
"socket.io store",
"socket store",
"ws"
],
"scripts": {
"dev": "vite",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"preview": "vite preview"
},
"peerDependencies": {
"socket.io-client": "^4.5.2"
},
"devDependencies": {
"express": "^4.18.1",
"jest": "^29.0.3",
"socket.io": "^4.5.2",
"typescript": "^4.6.4",
"vite": "^3.1.0"
},
"repository": {
"type":"git",
"url": "https://github.com/nerdchanii/socket.io-client-store.git"
},
"bugs": {
"url": "https://github.com/nerdchanii/socket.io-client-store/issues"
},
"homepage": "https://github.com/nerdchanii/socket.io-client-sotre.git"
}