node-telnet-client/package.json
Hammer1279 8b31201ad5
Some checks failed
Node.js CI / build (arm64, linux) (push) Failing after 47s
Node.js CI / build (arm64, win) (push) Failing after 32s
Node.js CI / build (x64, linux) (push) Successful in 32s
Node.js CI / build (x64, win) (push) Successful in 30s
Refactor code to use CommonJS syntax, update README and package.json for clarity and add binary packaging. Also added initial custom client init stuff.
Signed-off-by: Hammer1279 <hammer@ht-dev.de>
2025-01-19 00:41:58 +01:00

37 lines
808 B
JSON

{
"name": "telnet-client",
"version": "0.0.1",
"description": "To be used with HTDev BBS Server for encrypted communication and extended functionality.",
"main": "index.js",
"bin": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx pkg package.json -C GZip"
},
"repository": {
"type": "git",
"url": "https://git.ht-dev.de/Hammer1279/node-telnet-client"
},
"author": "Hammer1279",
"license": "MIT",
"dependencies": {
"telnet-client": "file:"
},
"devDependencies": {
"@yao-pkg/pkg": "^5.12.1"
},
"type": "commonjs",
"pkg": {
"assets": [
"README.md",
"LICENSE",
"package.json"
],
"targets": [
"latest-win-x64",
"latest-linux-x64"
],
"outputPath": "dist"
}
}