http-tunnel-client/package.json

44 lines
1.1 KiB
JSON
Raw Normal View History

2022-06-24 23:44:12 +07:00
{
"name": "@cubetiq/hlt",
2023-07-27 09:13:44 +07:00
"version": "0.1.10",
"description": "A lightweight http tunnel client using nodejs and socket.io client",
2023-01-04 11:52:20 +07:00
"main": "dist/cli.js",
2022-06-24 23:44:12 +07:00
"bin": {
"hlt": "bin/hlt"
2022-06-24 23:44:12 +07:00
},
"scripts": {
2023-01-04 11:52:20 +07:00
"start": "ts-node-dev --respawn --transpile-only src/cli.ts",
2023-07-11 12:24:20 +07:00
"test": "ts-node-dev --respawn --transpile-only test/test.ts",
2023-01-04 11:52:20 +07:00
"local": "ts-node-dev --respawn --transpile-only src/cli.ts start -p local",
2023-07-11 12:27:49 +07:00
"build": "rimraf dist && tsc"
2022-06-24 23:44:12 +07:00
},
"repository": {
"type": "git",
"url": "https://git.cubetiqs.com/cubetiq/http-tunnel-client.git"
},
"keywords": [
"http-tunnel-client",
"socket.io-client"
2022-06-24 23:44:12 +07:00
],
"author": "Sambo Chea <sombochea@cubetiqs.com>",
"license": "ISC",
"dependencies": {
"axios": "^1.2.0",
2023-07-11 12:27:49 +07:00
"commander": "^11.0.0",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"https-proxy-agent": "^7.0.0",
2022-06-24 23:44:12 +07:00
"socket.io-client": "^4.5.1"
2022-06-26 00:35:11 +07:00
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/node": "^20.0.0",
2023-07-11 12:27:49 +07:00
"rimraf": "^5.0.1",
"ts-node-dev": "^2.0.0",
2023-03-17 00:10:43 +07:00
"typescript": "^5.0.0"
2022-06-24 23:44:12 +07:00
}
}