Files
remoteingress/package.json

67 lines
1.7 KiB
JSON
Raw Normal View History

2024-03-24 14:44:44 +01:00
{
"name": "@serve.zone/remoteingress",
2026-02-19 08:45:32 +00:00
"version": "4.0.0",
2024-03-24 14:44:44 +01:00
"private": false,
"description": "Edge ingress tunnel for DcRouter - accepts incoming TCP connections at network edge and tunnels them to DcRouter SmartProxy preserving client IP via PROXY protocol v1.",
2024-03-24 14:44:44 +01:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --verbose --logfile --timeout 60)",
"build": "(tsbuild tsfolders --allowimplicitany && tsrust)",
2024-03-24 14:44:44 +01:00
"buildDocs": "(tsdoc)"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.1.2",
"@git.zone/tsbundle": "^2.8.3",
"@git.zone/tsrun": "^2.0.1",
"@git.zone/tsrust": "^1.3.0",
"@git.zone/tstest": "^3.1.8",
"@push.rocks/tapbundle": "^6.0.3",
"@types/node": "^25.3.0"
2024-03-24 14:44:44 +01:00
},
2024-04-14 03:38:00 +02:00
"dependencies": {
"@push.rocks/qenv": "^6.1.3",
"@push.rocks/smartrust": "^1.2.1"
2024-04-14 03:38:00 +02:00
},
2024-03-24 14:44:44 +01:00
"repository": {
"type": "git",
"url": "git+https://code.foss.global/serve.zone/remoteingress.git"
},
"bugs": {
"url": "https://code.foss.global/serve.zone/remoteingress/issues"
},
"homepage": "https://code.foss.global/serve.zone/remoteingress#readme",
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"dist_rust/**/*",
2024-03-24 14:44:44 +01:00
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 03:38:00 +02:00
],
"keywords": [
"remote access",
"ingress tunnel",
"network edge",
"PROXY protocol",
"multiplexed tunnel",
"TCP proxy",
"TLS tunnel",
2024-04-14 03:40:55 +02:00
"serve.zone stack",
"TypeScript",
"Rust",
"SmartProxy"
2024-03-24 14:44:44 +01:00
]
2024-04-14 03:40:56 +02:00
}