44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "@cubetiq/hlt",
|
|
"version": "0.1.7",
|
|
"description": "A lightweight http tunnel client using nodejs and socket.io client",
|
|
"main": "dist/cli.js",
|
|
"bin": {
|
|
"hlt": "bin/hlt"
|
|
},
|
|
"scripts": {
|
|
"start": "ts-node-dev --respawn --transpile-only src/cli.ts",
|
|
"test": "ts-node-dev --respawn --transpile-only test/test.ts",
|
|
"local": "ts-node-dev --respawn --transpile-only src/cli.ts start -p local",
|
|
"build": "rimraf dist && tsc"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.cubetiqs.com/cubetiq/http-tunnel-client.git"
|
|
},
|
|
"keywords": [
|
|
"http-tunnel-client",
|
|
"socket.io-client"
|
|
],
|
|
"author": "Sambo Chea <sombochea@cubetiqs.com>",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"axios": "^1.2.0",
|
|
"commander": "^11.0.0",
|
|
"express": "^4.18.2",
|
|
"http-proxy-middleware": "^2.0.6",
|
|
"https-proxy-agent": "^7.0.0",
|
|
"socket.io-client": "^4.5.1"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.15",
|
|
"@types/node": "^20.0.0",
|
|
"rimraf": "^5.0.1",
|
|
"ts-node-dev": "^2.0.0",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|