-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
40 lines (40 loc) · 859 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/session",
"version": "1.1.0",
"description": "Flok Session package",
"author": "Damián Silvani <[email protected]>",
"license": "GPL-3.0+",
"type": "module",
"files": [
"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.0.1",
"debug": "^4.3.4",
"events": "^3.3.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"typescript": "^4.9.4"
},
"peerDependencies": {
"y-indexeddb": "^9.0.9",
"y-protocols": "^1.0.5",
"y-webrtc": "^10.2.4",
"y-websocket": "^1.5.0",
"yjs": "^13.5.50"
}
}