-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.93 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "ultravnc_repeater",
"version": "0.0.2",
"description": "Allows for connection to multiple servers (in listen mode), using only one port. All connection data flows through the repeater, allowing connection to multiple servers through a single port forward or tunnel.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "npm run build:full && npm run serve:bundle",
"serve:bundle": "cd build && node app.js",
"build:full": "webpack",
"build:lib": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jc-lab/ultravnc_repeater.js.git"
},
"author": {
"name": "Joseph Lee",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jc-lab/ultravnc_repeater.js/issues"
},
"homepage": "https://github.com/jc-lab/ultravnc_repeater.js#readme",
"dependencies": {
"axios": "^0.20.0",
"bunyan": "^1.8.14",
"express": "^4.17.1",
"express-bunyan-logger": "^1.3.3",
"lodash.has": "^4.5.2",
"lodash.set": "^4.3.2",
"printf": "^0.6.0",
"request": "^2.88.2",
"useragent": "^2.3.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/express": "^4.17.8",
"@types/express-bunyan-logger": "^1.3.2",
"@types/node": "^14.11.5",
"@types/printf": "^0.3.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.2.0",
"eslint": "^7.10.0",
"tsc": "^1.20150623.0",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.2"
},
"keywords": [
"ultravnc",
"uvnc",
"uvnc_repeater",
"repeater"
]
}