-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 807 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 807 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
{
"name": "@playfast/echoform-socket-server",
"version": "1.0.2",
"description": "Socket.IO server transport for echoform",
"type": "module",
"exports": {
".": {
"types": "./src/index.tsx",
"import": "./src/index.tsx",
"default": "./src/index.tsx"
}
},
"files": [
"src"
],
"scripts": {
"typecheck": "tsgo -p .",
"build": "tsgo -p ."
},
"peerDependencies": {
"@playfast/echoform": ">=1.0.2",
"react": ">=19.0.0"
},
"dependencies": {
"socket.io": "4.6.2",
"bufferutil": "4.0.7",
"utf-8-validate": "5.0.10"
},
"devDependencies": {
"@playfast/echoform": "workspace:*",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@types/socket.io": "2.1.13"
},
"author": "shmuelhizmi",
"license": "MIT"
}