-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 964 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 964 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "react-net-kit",
"version": "1.0.3",
"scripts": {
"dev": "npmize dev",
"build": "npmize build",
"vite": "vite"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.cts"
},
"./ws": {
"require": "./dist/ws.cjs",
"import": "./dist/ws.mjs"
}
},
"typesVersions": {
"*": {
"ws": [
"./dist/ws.d.cts"
]
}
},
"peerDependencies": {
"axios": "*",
"react": "*",
"socket.io-client": "*"
},
"devDependencies": {
"@types/node": "^22.7.7",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.7.1",
"axios": "*",
"npmize": "^1.1.11",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"socket.io-client": "*",
"typescript": "^5.2.2",
"vite": "^5.4.9"
}
}