-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 982 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
{
"name": "broadcaster",
"version": "2.0.0",
"description": "A NodeJS adhoc WebSocket server. Receives messages from clients, and broadcasts them to all clients.",
"main": "src/server.ts",
"engines": {
"node": "18.x"
},
"scripts": {
"test": "echo \"Error: there are no tests.\" && exit 1",
"start": "ts-node src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caseyfw/broadcaster.git"
},
"keywords": [
"websocket",
"broadcast"
],
"author": "Casey Fulton",
"license": "MIT",
"bugs": {
"url": "https://github.com/caseyfw/broadcaster/issues"
},
"homepage": "https://github.com/caseyfw/broadcaster#readme",
"devDependencies": {
"@types/ws": "^8.5.4",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"ws": "^8.13.0"
}
}