-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 790 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 790 Bytes
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
{
"name": "screen-stream-over-http",
"version": "1.1.0",
"description": "Effortless screen sharing over HTTP using WebSockets",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"express": "^4.19.2",
"uuid": "^9.0.1",
"ws": "^8.16.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"nodemon": "^3.1.0"
},
"keywords": [
"screen sharing",
"websockets",
"streaming",
"real-time"
],
"author": "Sannjay",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}