-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.72 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
61
62
63
{
"name": "mud-web-proxy",
"version": "4.0.0",
"description": "WebSocket to Telnet proxy for MUD servers",
"type": "module",
"keywords": [
"mud",
"proxy",
"websockets",
"telnet"
],
"author": "plamzi <plamzi@gmail.com>",
"contributors": [
"plamzi <plamzi@gmail.com>",
"neverbot <ivan@neverbot.com>"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"test": "NODE_ENV=test npx c8 mocha --require tsx 'test/**/*.{test,e2e}.ts'",
"test:only": "NODE_ENV=test mocha --require tsx 'test/**/*.{test,e2e}.ts'",
"test:mute": "NODE_ENV=test LOG_LEVEL=silent mocha --require tsx 'test/**/*.{test,e2e}.ts'",
"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": {
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^22.20.0",
"@types/sinon": "^22.0.0",
"@types/ws": "^8.18.1",
"c8": "^11.0.0",
"chai": "^6.2.2",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-chai-expect": "^4.1.0",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.7.0",
"mocha": "^11.7.6",
"prettier": "^3.9.4",
"sinon": "^22.0.0",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0"
},
"dependencies": {
"@eslint/js": "^10.0.1",
"iconv-lite": "^0.7.3",
"ws": "^8.21.0",
"zod": "^4.4.3"
}
}