-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
40 lines (40 loc) · 909 Bytes
/
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
{
"name": "@flok-editor/server-middleware",
"version": "1.3.0",
"description": "Server middleware for Flok, handles WebSocket connections and WebRTC signaling",
"author": "Damián Silvani <[email protected]>",
"license": "GPL-3.0+",
"type": "module",
"files": [
"bin",
"dist"
],
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsc"
},
"dependencies": {
"@flok-editor/pubsub": "^1.3.0",
"debug": "^4.3.4"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^18.14.6",
"prettier": "^3.4.2",
"typescript": "^4.9.4"
},
"peerDependencies": {
"lib0": "^0.2.63",
"y-protocols": "^1.0.5",
"yjs": "^13.6.21"
}
}