-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.07 KB
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
{
"name": "castview",
"version": "0.1.2",
"description": "Mirror your screen to any device with a browser over LAN. Zero install on the viewer, QR code to connect, works over WiFi or a USB cable.",
"main": "server.js",
"bin": {
"castview": "server.js"
},
"files": [
"server.js",
"viewer.html",
"host.html",
"assets/castview.icns",
"assets/castview.ico",
"assets/castview.png",
"assets/logo.png"
],
"scripts": {
"start": "node server.js"
},
"engines": {
"node": ">=18"
},
"keywords": [
"screen-mirror",
"screen-share",
"screen-cast",
"mirror",
"remote-display",
"lan",
"websocket",
"mjpeg",
"second-screen"
],
"author": "Ajith M Jose",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ajithonmain/Castview.git"
},
"homepage": "https://cstview.vercel.app",
"bugs": {
"url": "https://github.com/ajithonmain/Castview/issues"
},
"dependencies": {
"qrcode": "^1.5.4",
"screenshot-desktop": "^1.15.1",
"ws": "^8.18.0"
}
}