portmp
Version:
port mapping. A fast reverse proxy to help you expose a local server behind a NAT or firewall to the internet. support TCP & UDP
55 lines • 1.39 kB
JSON
{
"name": "portmp",
"version": "0.0.7",
"description": "port mapping. A fast reverse proxy to help you expose a local server behind a NAT or firewall to the internet. support TCP & UDP",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "echo test ok! && exit 0",
"dev": "tsc -w",
"tsc": "tsc",
"tsc:types": "tsc -p tsconfig.types.json",
"bundle": "rollup -c ./rollup.config.mjs",
"build": "npm run tsc && npm run tsc:types && npm run bundle",
"clean": "rimraf src/**/*.js src/**/*.js.map dist bin",
"b": "npm run build",
"c": "npm run clean"
},
"bin": {
"portmp": "./bin/cli.js"
},
"files": [
"bin",
"dist"
],
"author": "",
"license": "ISC",
"homepage": "https://github.com/tinysets/portmp",
"repository": {
"type": "git",
"url": "https://github.com/tinysets/portmp.git"
},
"keywords": [
"port mapping",
"port forward",
"reverse proxy",
"NAT",
"TCP",
"UDP"
],
"dependencies": {
"commander": "^8.3.0",
"delay": "^5.0.0",
"koa-compose": "^4.1.0",
"once": "^1.4.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@types/node": "^20.5.9",
"rimraf": "^3.0.2",
"rollup": "^3.20.7",
"rollup-plugin-header": "^0.0.2",
"typescript": "^5.2.2"
}
}