-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
41 lines (41 loc) · 964 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
41
{
"name": "@flok-editor/pubsub",
"version": "1.3.0",
"description": "Pub/Sub client-server, used for remote code execution and message passing on Flok",
"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": {
"bufferutil": "^4.0.7",
"debug": "^4.3.4",
"events": "^3.3.0",
"isomorphic-ws": "^5.0.0",
"utf-8-validate": "^6.0.3",
"uuid": "^9.0.0",
"ws": "^8.12.1"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^18.14.6",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"prettier": "^3.4.2",
"typescript": "^4.9.4"
}
}