@elizaos/plugin-tunnel 2.0.3-beta.2 → 2.0.3-beta.4
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.
- package/package.json +5 -4
- package/registry-entry.json +45 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-tunnel",
|
|
3
|
-
"version": "2.0.3-beta.
|
|
3
|
+
"version": "2.0.3-beta.4",
|
|
4
4
|
"description": "Tunnel plugin for elizaOS — local Tailscale CLI backend (serve/funnel). Pair with @elizaos/plugin-elizacloud for the hosted headscale backend.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
|
+
"registry-entry.json",
|
|
34
35
|
"dist",
|
|
35
36
|
"src"
|
|
36
37
|
],
|
|
@@ -53,10 +54,10 @@
|
|
|
53
54
|
"networking"
|
|
54
55
|
],
|
|
55
56
|
"peerDependencies": {
|
|
56
|
-
"@elizaos/core": "2.0.3-beta.
|
|
57
|
+
"@elizaos/core": "2.0.3-beta.4"
|
|
57
58
|
},
|
|
58
59
|
"dependencies": {
|
|
59
|
-
"@elizaos/core": "2.0.3-beta.
|
|
60
|
+
"@elizaos/core": "2.0.3-beta.4",
|
|
60
61
|
"zod": "^4.4.2"
|
|
61
62
|
},
|
|
62
63
|
"devDependencies": {
|
|
@@ -72,5 +73,5 @@
|
|
|
72
73
|
"pluginType": "elizaos:plugin:1.0.0",
|
|
73
74
|
"pluginParameters": {}
|
|
74
75
|
},
|
|
75
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "f76f55793a0fb8d6b869dd8ddce03970de061e34"
|
|
76
77
|
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "tunnel",
|
|
3
|
+
"name": "Tunnel",
|
|
4
|
+
"description": "Local Tailscale-CLI tunnel backend (serve / funnel). Implements the canonical tunnel-service contract; coexists with plugin-tailscale, plugin-ngrok, and the Eliza Cloud headscale backend via first-active-wins.",
|
|
5
|
+
"npmName": "@elizaos/plugin-tunnel",
|
|
6
|
+
"version": "0.1.0",
|
|
7
|
+
"source": "bundled",
|
|
8
|
+
"tags": ["tunnel", "tailscale", "networking"],
|
|
9
|
+
"config": {
|
|
10
|
+
"TUNNEL_DEFAULT_PORT": {
|
|
11
|
+
"type": "number",
|
|
12
|
+
"required": false,
|
|
13
|
+
"sensitive": false,
|
|
14
|
+
"default": "3000",
|
|
15
|
+
"label": "Default Port",
|
|
16
|
+
"help": "Used when no port is extracted from the user message.",
|
|
17
|
+
"advanced": false
|
|
18
|
+
},
|
|
19
|
+
"TUNNEL_USE_FUNNEL": {
|
|
20
|
+
"type": "boolean",
|
|
21
|
+
"required": false,
|
|
22
|
+
"sensitive": false,
|
|
23
|
+
"default": "False",
|
|
24
|
+
"label": "Use Funnel",
|
|
25
|
+
"help": "When true, use 'tailscale funnel' to expose to the public Internet. When false, use 'tailscale serve' (tailnet-internal only).",
|
|
26
|
+
"advanced": false
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"render": {
|
|
30
|
+
"visible": true,
|
|
31
|
+
"pinTo": [],
|
|
32
|
+
"style": "card",
|
|
33
|
+
"icon": "Network",
|
|
34
|
+
"group": "devtools",
|
|
35
|
+
"groupOrder": 7,
|
|
36
|
+
"actions": ["enable", "configure"]
|
|
37
|
+
},
|
|
38
|
+
"resources": {
|
|
39
|
+
"homepage": "https://github.com/eliza-ai/eliza/tree/develop/plugins/plugin-tunnel#readme",
|
|
40
|
+
"repository": "https://github.com/eliza-ai/eliza"
|
|
41
|
+
},
|
|
42
|
+
"dependsOn": [],
|
|
43
|
+
"kind": "plugin",
|
|
44
|
+
"subtype": "devtools"
|
|
45
|
+
}
|