-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.3 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
51
52
53
54
55
56
57
58
59
60
{
"name": "webrdp",
"description": "Web-based RDP client proxy",
"version": "1.0.0",
"type": "module",
"homepage": "https://github.com/Mikej81/WebRDP",
"author": {
"name": "Mikej81",
"email": "stumpj@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Mikej81/WebRDP.git"
},
"bugs": {
"url": "https://github.com/Mikej81/WebRDP/issues"
},
"license": "GPL-3.0",
"main": "app.js",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"start": "node app.js",
"dev": "node --watch app.js",
"build": "node esbuild.config.js",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@electerm/rdpjs": "^1.0.0",
"basic-auth": "^2.0.1",
"debug": "^4.3.4",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"express-session": "^1.18.1",
"helmet": "^8.0.0",
"jimp": "^0.22.12",
"morgan": "^1.10.0",
"socket.io": "^4.8.1",
"validator": "^13.12.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"esbuild": "^0.27.3",
"eslint": "^9.14.0",
"socket.io-client": "^4.8.1",
"supertest": "^7.0.0",
"vitest": "^4.0.18"
},
"keywords": [
"rdp",
"remote-desktop",
"websocket",
"express",
"html5"
]
}