@camstack/addon-tailscale-ingress 0.1.1 → 0.1.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/assets/icon.svg +1 -0
- package/dist/tailscale-ingress.addon.js +14485 -238
- package/dist/tailscale-ingress.addon.js.map +1 -1
- package/dist/tailscale-ingress.addon.mjs +14479 -233
- package/dist/tailscale-ingress.addon.mjs.map +1 -1
- package/package.json +8 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-tailscale-ingress",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Tailscale Serve / Funnel ingress addon for CamStack — exposes the hub via tailnet HTTPS or public Funnel.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"./package.json": "./package.json"
|
|
25
25
|
},
|
|
26
26
|
"camstack": {
|
|
27
|
-
"displayName": "Tailscale Ingress",
|
|
27
|
+
"displayName": "Tailscale Ingress (Serve/Funnel)",
|
|
28
28
|
"addons": [
|
|
29
29
|
{
|
|
30
30
|
"id": "tailscale-ingress",
|
|
31
|
-
"name": "Tailscale Ingress",
|
|
31
|
+
"name": "Tailscale Ingress (Serve/Funnel)",
|
|
32
32
|
"version": "1.0.0",
|
|
33
33
|
"description": "Exposes the CamStack hub on the tailnet (Serve) or the public internet (Funnel). Requires `@camstack/addon-tailscale-client` to be installed and joined first.",
|
|
34
34
|
"entry": "./dist/tailscale-ingress.addon.js",
|
|
@@ -40,12 +40,15 @@
|
|
|
40
40
|
{
|
|
41
41
|
"name": "network-access"
|
|
42
42
|
}
|
|
43
|
-
]
|
|
43
|
+
],
|
|
44
|
+
"icon": "assets/icon.svg",
|
|
45
|
+
"color": "#242424"
|
|
44
46
|
}
|
|
45
47
|
]
|
|
46
48
|
},
|
|
47
49
|
"files": [
|
|
48
|
-
"dist"
|
|
50
|
+
"dist",
|
|
51
|
+
"assets"
|
|
49
52
|
],
|
|
50
53
|
"scripts": {
|
|
51
54
|
"build": "vite build",
|