telnet-proxy
Version:
A WebSocket-to-telnet proxy server for connecting web clients to MUD (Multi-User Dungeon) servers
62 lines (61 loc) • 1.48 kB
JSON
{
"name": "telnet-proxy",
"version": "0.0.20",
"description": "A WebSocket-to-telnet proxy server for connecting web clients to MUD (Multi-User Dungeon) servers",
"keywords": [
"telnet",
"websocket",
"proxy",
"mud",
"mccp2",
"zlib",
"encoding"
],
"author": "danneu",
"repository": {
"type": "git",
"url": "https://github.com/danneu/telnet-proxy.git"
},
"bugs": {
"url": "https://github.com/danneu/telnet-proxy/issues"
},
"homepage": "https://github.com/danneu/telnet-proxy#readme",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"type": "module",
"bin": {
"telnet-proxy": "dist/bin/telnet-proxy.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"deploy": "flyctl deploy",
"dev": "tsx watch bin/telnet-proxy.ts",
"check": "tsc --noEmit",
"lint": "eslint --fix",
"prepublishOnly": "npm run build",
"start": "node dist/bin/telnet-proxy.js",
"test": "vitest"
},
"dependencies": {
"dotenv": "^16.5.0",
"iconv-lite": "^0.6.3",
"ws": "^8.18.2",
"zod": "^3.25.56"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/node": "^22.15.30",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"vitest": "^3.2.3"
}
}