unifi-mcp-worker 1.3.9 → 1.3.10

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/README.md CHANGED
@@ -16,11 +16,13 @@ Cloudflare Worker ────────────────────
16
16
  |
17
17
  WebSocket (WSS) /ws (relay_token)
18
18
  |
19
- unifi-mcp-relay (local network)
19
+ Relay sidecar (local network)
20
20
  |
21
- UniFi MCP Server (stdio/HTTP)
21
+ MCP over HTTP to local servers
22
22
  ```
23
23
 
24
+ The Relay sidecar connects to each configured local MCP server using MCP over HTTP only.
25
+
24
26
  The Durable Object persists location registrations in SQLite and maintains live WebSocket connections to one or more relay clients. When a tool call arrives from a cloud agent, the worker routes it to the appropriate relay client and streams the result back.
25
27
 
26
28
  **Multi-location support:** Multiple relay clients can connect simultaneously, each representing a different physical location (home lab, branch office, customer site). Read-only tool calls are automatically fanned out to all connected locations and results are aggregated. Write operations require an explicit `__location` argument to target a specific site — useful for MSP workflows.
@@ -151,7 +153,7 @@ Response:
151
153
  }
152
154
  ```
153
155
 
154
- Store the `token` value securely — it is only returned once. Provide it to `unifi-mcp-relay` as `UNIFI_MCP_RELAY_TOKEN` (see [unifi-mcp](https://github.com/sirkirby/unifi-mcp) for relay client configuration).
156
+ Store the `token` value securely — it is only returned once. Provide it to the Relay sidecar as `UNIFI_RELAY_TOKEN` (see the [Relay sidecar setup](https://github.com/sirkirby/unifi-mcp/tree/main/packages/unifi-mcp-relay)).
155
157
 
156
158
  ### List Registered Locations
157
159
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unifi-mcp-worker",
3
- "version": "1.3.9",
3
+ "version": "1.3.10",
4
4
  "description": "CLI to deploy and manage the UniFi MCP Cloudflare Worker relay",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,11 +8,11 @@
8
8
  "name": "unifi-mcp-worker-source",
9
9
  "version": "1.0.0",
10
10
  "devDependencies": {
11
- "@cloudflare/workers-types": "^4.20260630.1",
12
- "@types/node": "^22.20.0",
11
+ "@cloudflare/workers-types": "^5.20260713.1",
12
+ "@types/node": "^22.20.1",
13
13
  "typescript": "^5.7.0",
14
14
  "vitest": "^4.1.10",
15
- "wrangler": "^4.107.0"
15
+ "wrangler": "^4.110.0"
16
16
  }
17
17
  },
18
18
  "node_modules/@cloudflare/kv-asset-handler": {
@@ -41,10 +41,95 @@
41
41
  }
42
42
  }
43
43
  },
44
+ "node_modules/@cloudflare/workerd-darwin-64": {
45
+ "version": "1.20260708.1",
46
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20260708.1.tgz",
47
+ "integrity": "sha512-HXFCvhS1wpg3uXO0CLUwmwC41i2loM5FSK69EUchOBpmYBAXxT1oHLm6EOA5lqhTk5Mu9kjRiQYxa1GwKPwfJg==",
48
+ "cpu": [
49
+ "x64"
50
+ ],
51
+ "dev": true,
52
+ "license": "Apache-2.0",
53
+ "optional": true,
54
+ "os": [
55
+ "darwin"
56
+ ],
57
+ "engines": {
58
+ "node": ">=16"
59
+ }
60
+ },
61
+ "node_modules/@cloudflare/workerd-darwin-arm64": {
62
+ "version": "1.20260708.1",
63
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20260708.1.tgz",
64
+ "integrity": "sha512-JVlJaKDoRTVKSroHIlf8g3UCPjKj4iDbMZE2CNYht5qQ+2rL0FAUiVlV82G3BqKnnw9kHYnnsMzC08b9zVtdzA==",
65
+ "cpu": [
66
+ "arm64"
67
+ ],
68
+ "dev": true,
69
+ "license": "Apache-2.0",
70
+ "optional": true,
71
+ "os": [
72
+ "darwin"
73
+ ],
74
+ "engines": {
75
+ "node": ">=16"
76
+ }
77
+ },
78
+ "node_modules/@cloudflare/workerd-linux-64": {
79
+ "version": "1.20260708.1",
80
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20260708.1.tgz",
81
+ "integrity": "sha512-3daE60YdD7YX0Jtuzc9DE/r/qMkmx8ZvHTkF8Mzmp3F5tbzlV0DAzmu5PFUPF2WuvtKbAhZKbvC2cHmWpQYxnA==",
82
+ "cpu": [
83
+ "x64"
84
+ ],
85
+ "dev": true,
86
+ "license": "Apache-2.0",
87
+ "optional": true,
88
+ "os": [
89
+ "linux"
90
+ ],
91
+ "engines": {
92
+ "node": ">=16"
93
+ }
94
+ },
95
+ "node_modules/@cloudflare/workerd-linux-arm64": {
96
+ "version": "1.20260708.1",
97
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20260708.1.tgz",
98
+ "integrity": "sha512-VLdNYOx5Hj+9C6isy0ACWZsbMtSxex2DIJWEe7cZxUdlphZ58ZT8zxNXK8yunFiowd34hn3VwGMopdvdj8lvmA==",
99
+ "cpu": [
100
+ "arm64"
101
+ ],
102
+ "dev": true,
103
+ "license": "Apache-2.0",
104
+ "optional": true,
105
+ "os": [
106
+ "linux"
107
+ ],
108
+ "engines": {
109
+ "node": ">=16"
110
+ }
111
+ },
112
+ "node_modules/@cloudflare/workerd-windows-64": {
113
+ "version": "1.20260708.1",
114
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20260708.1.tgz",
115
+ "integrity": "sha512-bC/aSAwLy16Vjo24i9XU3aWH+eRgz7NeR5xPKavGbembO18ZywYTQbXh14eXtY6fAqN3RzRG8psijTdhX4xydA==",
116
+ "cpu": [
117
+ "x64"
118
+ ],
119
+ "dev": true,
120
+ "license": "Apache-2.0",
121
+ "optional": true,
122
+ "os": [
123
+ "win32"
124
+ ],
125
+ "engines": {
126
+ "node": ">=16"
127
+ }
128
+ },
44
129
  "node_modules/@cloudflare/workers-types": {
45
- "version": "4.20260702.1",
46
- "resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-4.20260702.1.tgz",
47
- "integrity": "sha512-mOhf5TUEB1m2vPrxtqoIGfz0fUC9xyxRDx5gWHy5s+OCo6dcV+g7wI1R7gYCMFohhqF/2y2xeKVwMwCJjfn/WA==",
130
+ "version": "5.20260713.1",
131
+ "resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-5.20260713.1.tgz",
132
+ "integrity": "sha512-4YZE9YIzr3iP9eRUV4ekZozLLsYQFFKxmMJfAcsteCuzKJ7RJrLqcCxm1aMzTE9uFcy+D6A89WE+cjJadF2c9g==",
48
133
  "dev": true,
49
134
  "license": "MIT OR Apache-2.0"
50
135
  },
@@ -1507,9 +1592,9 @@
1507
1592
  "license": "MIT"
1508
1593
  },
1509
1594
  "node_modules/@types/node": {
1510
- "version": "22.20.0",
1511
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.20.0.tgz",
1512
- "integrity": "sha512-QWlFW2wf3nTjC13/DqRnBpR4ZO36VJH/JVBkA/vcnmbTBNQIlnObqyqZE1tUR7+Ni23Lda8R1BxMfbXRpCUx5g==",
1595
+ "version": "22.20.1",
1596
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.20.1.tgz",
1597
+ "integrity": "sha512-EANqOCF9QFyra+4pfxUcX9STKJpCLjMbObVzljIJomAWSnuSIEAvyzEU53GaajbXJEgdh0iEcPL+DGvpUd4k1Q==",
1513
1598
  "dev": true,
1514
1599
  "license": "MIT",
1515
1600
  "dependencies": {
@@ -2093,16 +2178,16 @@
2093
2178
  }
2094
2179
  },
2095
2180
  "node_modules/miniflare": {
2096
- "version": "4.20260701.0",
2097
- "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-4.20260701.0.tgz",
2098
- "integrity": "sha512-L6eAAi6IKtyb/7J6L+YsH2vb1yBrJWKRXI293JYDiMl70+6nncdAgigex58w6WBd+CwvdMsqOyNyGs95Op5gWQ==",
2181
+ "version": "4.20260708.1",
2182
+ "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-4.20260708.1.tgz",
2183
+ "integrity": "sha512-c94O9zRDISdqO18EHt6l0iF/fWgWt8p18PJvRsA/L/NJZ9Cfke3s/F5Blg1XXF7WDutVRzWVWy8Vy4LaT5ifsA==",
2099
2184
  "dev": true,
2100
2185
  "license": "MIT",
2101
2186
  "dependencies": {
2102
2187
  "@cspotcode/source-map-support": "0.8.1",
2103
2188
  "sharp": "0.34.5",
2104
2189
  "undici": "7.28.0",
2105
- "workerd": "1.20260701.1",
2190
+ "workerd": "1.20260708.1",
2106
2191
  "ws": "8.21.0",
2107
2192
  "youch": "4.1.0-beta.10"
2108
2193
  },
@@ -2113,112 +2198,6 @@
2113
2198
  "node": ">=22.0.0"
2114
2199
  }
2115
2200
  },
2116
- "node_modules/miniflare/node_modules/@cloudflare/workerd-darwin-64": {
2117
- "version": "1.20260701.1",
2118
- "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20260701.1.tgz",
2119
- "integrity": "sha512-Zd9Y1bah6DwwBN2RW8vJohffQrIUazb8UXnqSNecOxM+jJLhUuvv5IOG8dbHcV83TyZAubea6gsQXo2yH1lDdw==",
2120
- "cpu": [
2121
- "x64"
2122
- ],
2123
- "dev": true,
2124
- "license": "Apache-2.0",
2125
- "optional": true,
2126
- "os": [
2127
- "darwin"
2128
- ],
2129
- "engines": {
2130
- "node": ">=16"
2131
- }
2132
- },
2133
- "node_modules/miniflare/node_modules/@cloudflare/workerd-darwin-arm64": {
2134
- "version": "1.20260701.1",
2135
- "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20260701.1.tgz",
2136
- "integrity": "sha512-yBLsjS1qCWqFyCY37qRUrYfzHHvMGvjh8zRKJ6MvUivYDhkZTzqduppK38FoqYvayLJ5KbcxH7zo5rkxGqbsaA==",
2137
- "cpu": [
2138
- "arm64"
2139
- ],
2140
- "dev": true,
2141
- "license": "Apache-2.0",
2142
- "optional": true,
2143
- "os": [
2144
- "darwin"
2145
- ],
2146
- "engines": {
2147
- "node": ">=16"
2148
- }
2149
- },
2150
- "node_modules/miniflare/node_modules/@cloudflare/workerd-linux-64": {
2151
- "version": "1.20260701.1",
2152
- "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20260701.1.tgz",
2153
- "integrity": "sha512-vMfqSIMfoo4xmZXEuUVqLpSFS921YKjiR9q7kDXPi6Vld1PK74UHg9LZuBavT2KSyemHUCTpj9y/4JSYOEyQbQ==",
2154
- "cpu": [
2155
- "x64"
2156
- ],
2157
- "dev": true,
2158
- "license": "Apache-2.0",
2159
- "optional": true,
2160
- "os": [
2161
- "linux"
2162
- ],
2163
- "engines": {
2164
- "node": ">=16"
2165
- }
2166
- },
2167
- "node_modules/miniflare/node_modules/@cloudflare/workerd-linux-arm64": {
2168
- "version": "1.20260701.1",
2169
- "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20260701.1.tgz",
2170
- "integrity": "sha512-HRfwbKU2pK44V2NhoM0+iH0JJSj7nQ9Wv13ifIiGYCmTtDL8/zKtEhX7kQ3D4Vy/Cpjhttl0FkfqXj1aqLDPPg==",
2171
- "cpu": [
2172
- "arm64"
2173
- ],
2174
- "dev": true,
2175
- "license": "Apache-2.0",
2176
- "optional": true,
2177
- "os": [
2178
- "linux"
2179
- ],
2180
- "engines": {
2181
- "node": ">=16"
2182
- }
2183
- },
2184
- "node_modules/miniflare/node_modules/@cloudflare/workerd-windows-64": {
2185
- "version": "1.20260701.1",
2186
- "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20260701.1.tgz",
2187
- "integrity": "sha512-ngxCiIN9s/fM2o1IBMD0o1/mcXrv2NJVdyznh51UH8sQuvrTrXvV2nM0Uj/qU2wMwF6prgNBcdcd7AZeZGiBQA==",
2188
- "cpu": [
2189
- "x64"
2190
- ],
2191
- "dev": true,
2192
- "license": "Apache-2.0",
2193
- "optional": true,
2194
- "os": [
2195
- "win32"
2196
- ],
2197
- "engines": {
2198
- "node": ">=16"
2199
- }
2200
- },
2201
- "node_modules/miniflare/node_modules/workerd": {
2202
- "version": "1.20260701.1",
2203
- "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20260701.1.tgz",
2204
- "integrity": "sha512-uF813NG09JwNRRUfJ0zBomyTslSPM810dMj9LVvkQ7RAkLrQLzAlPU8Xh/3dIqZDo2bfd7tChbf2PtqLRARRJQ==",
2205
- "dev": true,
2206
- "hasInstallScript": true,
2207
- "license": "Apache-2.0",
2208
- "bin": {
2209
- "workerd": "bin/workerd"
2210
- },
2211
- "engines": {
2212
- "node": ">=16"
2213
- },
2214
- "optionalDependencies": {
2215
- "@cloudflare/workerd-darwin-64": "1.20260701.1",
2216
- "@cloudflare/workerd-darwin-arm64": "1.20260701.1",
2217
- "@cloudflare/workerd-linux-64": "1.20260701.1",
2218
- "@cloudflare/workerd-linux-arm64": "1.20260701.1",
2219
- "@cloudflare/workerd-windows-64": "1.20260701.1"
2220
- }
2221
- },
2222
2201
  "node_modules/nanoid": {
2223
2202
  "version": "3.3.15",
2224
2203
  "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.15.tgz",
@@ -2726,10 +2705,31 @@
2726
2705
  "node": ">=8"
2727
2706
  }
2728
2707
  },
2708
+ "node_modules/workerd": {
2709
+ "version": "1.20260708.1",
2710
+ "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20260708.1.tgz",
2711
+ "integrity": "sha512-WAK+Kt/VVCSldH2qSr8lx46XCJ4Q+bdlHNaFqUtOHthBEIB8C1N8HVW+VOLrxDoTCk0NGNv0zajnBeQK4JOB9w==",
2712
+ "dev": true,
2713
+ "hasInstallScript": true,
2714
+ "license": "Apache-2.0",
2715
+ "bin": {
2716
+ "workerd": "bin/workerd"
2717
+ },
2718
+ "engines": {
2719
+ "node": ">=16"
2720
+ },
2721
+ "optionalDependencies": {
2722
+ "@cloudflare/workerd-darwin-64": "1.20260708.1",
2723
+ "@cloudflare/workerd-darwin-arm64": "1.20260708.1",
2724
+ "@cloudflare/workerd-linux-64": "1.20260708.1",
2725
+ "@cloudflare/workerd-linux-arm64": "1.20260708.1",
2726
+ "@cloudflare/workerd-windows-64": "1.20260708.1"
2727
+ }
2728
+ },
2729
2729
  "node_modules/wrangler": {
2730
- "version": "4.107.0",
2731
- "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-4.107.0.tgz",
2732
- "integrity": "sha512-fw69ThymNitZ0oIEBU2yNeq3kK59UKz/jyA3udwRrQIAIsxX57q5qLOpPTN7qc5t8n9pnUeofe0uxtMuhQZW8w==",
2730
+ "version": "4.110.0",
2731
+ "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-4.110.0.tgz",
2732
+ "integrity": "sha512-xZeXKYi7hxQRF5anL+v77RkufJNpF9f3Eqeyqq2QBsETpLZgh0Agj0jJ6JPtkbgn6ukZdh8OK5egsGPWIditgg==",
2733
2733
  "dev": true,
2734
2734
  "license": "MIT OR Apache-2.0",
2735
2735
  "dependencies": {
@@ -2737,10 +2737,10 @@
2737
2737
  "@cloudflare/unenv-preset": "2.16.1",
2738
2738
  "blake3-wasm": "2.1.5",
2739
2739
  "esbuild": "0.28.1",
2740
- "miniflare": "4.20260701.0",
2740
+ "miniflare": "4.20260708.1",
2741
2741
  "path-to-regexp": "6.3.0",
2742
2742
  "unenv": "2.0.0-rc.24",
2743
- "workerd": "1.20260701.1"
2743
+ "workerd": "1.20260708.1"
2744
2744
  },
2745
2745
  "bin": {
2746
2746
  "cf-wrangler": "bin/cf-wrangler.js",
@@ -2754,7 +2754,7 @@
2754
2754
  "fsevents": "2.3.3"
2755
2755
  },
2756
2756
  "peerDependencies": {
2757
- "@cloudflare/workers-types": "^4.20260701.1"
2757
+ "@cloudflare/workers-types": "^5.20260708.1"
2758
2758
  },
2759
2759
  "peerDependenciesMeta": {
2760
2760
  "@cloudflare/workers-types": {
@@ -2762,112 +2762,6 @@
2762
2762
  }
2763
2763
  }
2764
2764
  },
2765
- "node_modules/wrangler/node_modules/@cloudflare/workerd-darwin-64": {
2766
- "version": "1.20260701.1",
2767
- "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20260701.1.tgz",
2768
- "integrity": "sha512-Zd9Y1bah6DwwBN2RW8vJohffQrIUazb8UXnqSNecOxM+jJLhUuvv5IOG8dbHcV83TyZAubea6gsQXo2yH1lDdw==",
2769
- "cpu": [
2770
- "x64"
2771
- ],
2772
- "dev": true,
2773
- "license": "Apache-2.0",
2774
- "optional": true,
2775
- "os": [
2776
- "darwin"
2777
- ],
2778
- "engines": {
2779
- "node": ">=16"
2780
- }
2781
- },
2782
- "node_modules/wrangler/node_modules/@cloudflare/workerd-darwin-arm64": {
2783
- "version": "1.20260701.1",
2784
- "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20260701.1.tgz",
2785
- "integrity": "sha512-yBLsjS1qCWqFyCY37qRUrYfzHHvMGvjh8zRKJ6MvUivYDhkZTzqduppK38FoqYvayLJ5KbcxH7zo5rkxGqbsaA==",
2786
- "cpu": [
2787
- "arm64"
2788
- ],
2789
- "dev": true,
2790
- "license": "Apache-2.0",
2791
- "optional": true,
2792
- "os": [
2793
- "darwin"
2794
- ],
2795
- "engines": {
2796
- "node": ">=16"
2797
- }
2798
- },
2799
- "node_modules/wrangler/node_modules/@cloudflare/workerd-linux-64": {
2800
- "version": "1.20260701.1",
2801
- "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20260701.1.tgz",
2802
- "integrity": "sha512-vMfqSIMfoo4xmZXEuUVqLpSFS921YKjiR9q7kDXPi6Vld1PK74UHg9LZuBavT2KSyemHUCTpj9y/4JSYOEyQbQ==",
2803
- "cpu": [
2804
- "x64"
2805
- ],
2806
- "dev": true,
2807
- "license": "Apache-2.0",
2808
- "optional": true,
2809
- "os": [
2810
- "linux"
2811
- ],
2812
- "engines": {
2813
- "node": ">=16"
2814
- }
2815
- },
2816
- "node_modules/wrangler/node_modules/@cloudflare/workerd-linux-arm64": {
2817
- "version": "1.20260701.1",
2818
- "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20260701.1.tgz",
2819
- "integrity": "sha512-HRfwbKU2pK44V2NhoM0+iH0JJSj7nQ9Wv13ifIiGYCmTtDL8/zKtEhX7kQ3D4Vy/Cpjhttl0FkfqXj1aqLDPPg==",
2820
- "cpu": [
2821
- "arm64"
2822
- ],
2823
- "dev": true,
2824
- "license": "Apache-2.0",
2825
- "optional": true,
2826
- "os": [
2827
- "linux"
2828
- ],
2829
- "engines": {
2830
- "node": ">=16"
2831
- }
2832
- },
2833
- "node_modules/wrangler/node_modules/@cloudflare/workerd-windows-64": {
2834
- "version": "1.20260701.1",
2835
- "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20260701.1.tgz",
2836
- "integrity": "sha512-ngxCiIN9s/fM2o1IBMD0o1/mcXrv2NJVdyznh51UH8sQuvrTrXvV2nM0Uj/qU2wMwF6prgNBcdcd7AZeZGiBQA==",
2837
- "cpu": [
2838
- "x64"
2839
- ],
2840
- "dev": true,
2841
- "license": "Apache-2.0",
2842
- "optional": true,
2843
- "os": [
2844
- "win32"
2845
- ],
2846
- "engines": {
2847
- "node": ">=16"
2848
- }
2849
- },
2850
- "node_modules/wrangler/node_modules/workerd": {
2851
- "version": "1.20260701.1",
2852
- "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20260701.1.tgz",
2853
- "integrity": "sha512-uF813NG09JwNRRUfJ0zBomyTslSPM810dMj9LVvkQ7RAkLrQLzAlPU8Xh/3dIqZDo2bfd7tChbf2PtqLRARRJQ==",
2854
- "dev": true,
2855
- "hasInstallScript": true,
2856
- "license": "Apache-2.0",
2857
- "bin": {
2858
- "workerd": "bin/workerd"
2859
- },
2860
- "engines": {
2861
- "node": ">=16"
2862
- },
2863
- "optionalDependencies": {
2864
- "@cloudflare/workerd-darwin-64": "1.20260701.1",
2865
- "@cloudflare/workerd-darwin-arm64": "1.20260701.1",
2866
- "@cloudflare/workerd-linux-64": "1.20260701.1",
2867
- "@cloudflare/workerd-linux-arm64": "1.20260701.1",
2868
- "@cloudflare/workerd-windows-64": "1.20260701.1"
2869
- }
2870
- },
2871
2765
  "node_modules/ws": {
2872
2766
  "version": "8.21.0",
2873
2767
  "resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz",
@@ -10,10 +10,10 @@
10
10
  "typecheck": "tsc --noEmit"
11
11
  },
12
12
  "devDependencies": {
13
- "@cloudflare/workers-types": "^4.20260630.1",
14
- "@types/node": "^22.20.0",
13
+ "@cloudflare/workers-types": "^5.20260713.1",
14
+ "@types/node": "^22.20.1",
15
15
  "typescript": "^5.7.0",
16
16
  "vitest": "^4.1.10",
17
- "wrangler": "^4.107.0"
17
+ "wrangler": "^4.110.0"
18
18
  }
19
19
  }