http-tunnel-client/package.json

39 lines
954 B
JSON
Raw Normal View History

2022-06-24 23:44:12 +07:00
{
"name": "@cubetiq/hlt",
"version": "0.1.5",
"description": "A lightweight http tunnel client using nodejs and socket.io client",
"main": "dist/client.js",
2022-06-24 23:44:12 +07:00
"bin": {
"hlt": "bin/hlt"
2022-06-24 23:44:12 +07:00
},
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/client.ts",
2022-11-15 18:59:04 +07:00
"local": "ts-node-dev --respawn --transpile-only src/client.ts start -p local",
"build": "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",
"commander": "^10.0.0",
"https-proxy-agent": "^6.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/node": "^18.0.3",
"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
}
}