-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "mud-web-proxy",
"version": "2.0.0",
"description": "Web proxy, websockets to telnet",
"type": "module",
"keywords": [
"mud",
"proxy",
"websockets",
"telnet"
],
"author": "plamzi <plamzi@gmail.com>",
"contributors": [
"plamzi <plamzi@gmail.com>",
"neverbot <ivan@neverbot.com>"
],
"main": "wsproxy.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maldorne/mud-web-proxy.git"
},
"license": "gpl-3.0",
"bugs": {
"url": "https://github.com/maldorne/mud-web-proxy/issues"
},
"homepage": "https://github.com/maldorne/mud-web-proxy#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.25.8",
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"jsonc-eslint-parser": "^2.4.0",
"prettier": "^3.3.3"
},
"dependencies": {
"iconv-lite": "^0.6.3",
"uglify-js": "^3.19.3",
"ws": "^8.18.0"
}
}