-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 998 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
42
43
44
45
{
"name": "slidev-sync-server",
"version": "0.0.0",
"description": "WebSocket server for slidev",
"homepage": "https://github.com/Smile-SA/slidev-sync-server",
"repository": {
"type": "git",
"url": "[email protected]:Smile-SA/slidev-sync-server.git"
},
"bugs": {
"url": "https://github.com/Smile-SA/slidev-sync-server/issues"
},
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node --experimental-specifier-resolution=node .",
"prepare": "npm run build"
},
"keywords": [
"vuejs",
"slidev",
"server",
"WebSocket",
"SSE"
],
"author": {
"name": "Tony Cabaye",
"email": "[email protected]",
"url": "https://github.com/tonai"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"fastify": "^4.28.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^22.5.1",
"@types/ws": "^8.5.12",
"typescript": "^5.5.4"
}
}