-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
80 lines (80 loc) · 1.99 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "y-socket.io",
"version": "1.1.3",
"description": "Socket IO Connector for Yjs (Inspired by y-websocket)",
"keywords": [
"yjs",
"socket.io",
"y-socket.io",
"yjs-provider",
"yjs-connector"
],
"author": "Iván Topp <ivan.topp.sandoval@gmail.com>",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
"./dist/server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js"
},
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"bin": {
"y-socket-io-server": "./dist/server/server.js",
"y-socket-io": "./dist/server/server.js"
},
"files": [
"dist/**"
],
"bugs": {
"url": "https://github.com/ivan-topp/y-socketio/issues"
},
"homepage": "https://github.com/ivan-topp/y-socketio/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/ivan-topp/y-socketio"
},
"scripts": {
"start": "node ./dist/server/server",
"build": "tsup",
"dev": "tsup --watch --onSuccess \"node dist/server/server.js\"",
"lint": "ts-standard && tsup",
"test": "npm run lint",
"example:server": "cd ./examples/server && npm install && npm run dev",
"example:client": "cd ./examples/react-example && npm install && npm run-script dev"
},
"ts-standard": {
"project": "./tsconfig.json",
"fix": false,
"ignore": [
"/dist",
"/node_modules",
"tsup.config.ts",
"/examples"
]
},
"dependencies": {
"lib0": "^0.2.52",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"y-leveldb": "^0.1.1",
"y-protocols": "^1.0.5"
},
"devDependencies": {
"ts-standard": "^11.0.0",
"tsup": "^6.2.2",
"typescript": "^4.5.0",
"yjs": "^13.5.41"
},
"peerDependencies": {
"yjs": "^13.5.6"
}
}