2022-06-24 23:44:12 +07:00
|
|
|
{
|
2022-06-26 00:22:33 +07:00
|
|
|
"name": "@cubetiq/hlt",
|
2023-07-11 18:57:49 +07:00
|
|
|
"version": "0.1.8",
|
2022-06-26 14:28:37 +07:00
|
|
|
"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": {
|
2022-06-26 00:22:33 +07:00
|
|
|
"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": [
|
2022-06-25 14:32:31 +07:00
|
|
|
"http-tunnel-client",
|
|
|
|
"socket.io-client"
|
2022-06-24 23:44:12 +07:00
|
|
|
],
|
|
|
|
"author": "Sambo Chea <sombochea@cubetiqs.com>",
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
2022-11-30 12:17:30 +07:00
|
|
|
"axios": "^1.2.0",
|
2023-07-11 12:27:49 +07:00
|
|
|
"commander": "^11.0.0",
|
2023-07-11 12:20:03 +07:00
|
|
|
"express": "^4.18.2",
|
|
|
|
"http-proxy-middleware": "^2.0.6",
|
2023-05-26 03:07:05 +07:00
|
|
|
"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"
|
2022-07-09 21:07:55 +07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-07-11 12:20:03 +07:00
|
|
|
"@types/express": "^4.17.15",
|
2023-05-06 04:00:47 +07:00
|
|
|
"@types/node": "^20.0.0",
|
2023-07-11 12:27:49 +07:00
|
|
|
"rimraf": "^5.0.1",
|
2022-07-09 21:07:55 +07:00
|
|
|
"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
|
|
|
}
|
|
|
|
}
|