@meg-ai/tunnel-cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +4101 -0
  2. package/package.json +57 -0
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@meg-ai/tunnel-cli",
3
+ "version": "0.1.0",
4
+ "description": "Expose local servers to the internet via serverless tunnels on AWS",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "meg-tunnel": "./dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist/**/*",
12
+ "README.md"
13
+ ],
14
+ "scripts": {
15
+ "start": "tsx src/index.ts",
16
+ "dev": "tsx watch src/index.ts",
17
+ "build": "esbuild src/index.ts --bundle --platform=node --target=node22 --outfile=dist/index.js --format=esm --banner:js='#!/usr/bin/env node' --external:ws",
18
+ "clean": "rm -rf dist",
19
+ "lint": "tsc --noEmit",
20
+ "prepublishOnly": "yarn clean && yarn build",
21
+ "publish:npm": "npm publish --access public",
22
+ "release": "yarn build && yarn publish:npm",
23
+ "deploy": "npm publish --access public --userconfig=../../../global/.npmrc ${OTP:+--otp=$OTP}"
24
+ },
25
+ "publishConfig": {
26
+ "registry": "https://registry.npmjs.org/",
27
+ "access": "public"
28
+ },
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git+https://github.com/meg-ai/ai-amitron.git"
32
+ },
33
+ "keywords": [
34
+ "tunnel",
35
+ "ngrok",
36
+ "localhost",
37
+ "proxy",
38
+ "cli",
39
+ "aws",
40
+ "meg"
41
+ ],
42
+ "author": "MEG AI",
43
+ "license": "MIT",
44
+ "dependencies": {
45
+ "commander": "^13.0.0",
46
+ "chalk": "^5.4.0",
47
+ "ws": "^8.18.0"
48
+ },
49
+ "devDependencies": {
50
+ "@types/node": "^22.0.0",
51
+ "@types/ws": "^8.5.0",
52
+ "esbuild": "^0.24.0",
53
+ "meg-tunnels-shared": "1.0.0",
54
+ "tsx": "^4.19.0",
55
+ "typescript": "^5.5.0"
56
+ }
57
+ }