netlify-cli 17.3.1 → 17.4.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 (210) hide show
  1. package/README.md +3 -139
  2. package/npm-shrinkwrap.json +82 -82
  3. package/package.json +16 -15
  4. package/src/commands/addons/addons-auth.mjs +27 -30
  5. package/src/commands/addons/addons-config.mjs +145 -154
  6. package/src/commands/addons/addons-create.mjs +94 -108
  7. package/src/commands/addons/addons-delete.mjs +36 -41
  8. package/src/commands/addons/addons-list.mjs +38 -42
  9. package/src/commands/addons/addons.mjs +26 -28
  10. package/src/commands/addons/index.mjs +1 -1
  11. package/src/commands/api/api.mjs +45 -53
  12. package/src/commands/api/index.mjs +1 -1
  13. package/src/commands/base-command.mjs +597 -684
  14. package/src/commands/blobs/blobs-delete.mjs +35 -0
  15. package/src/commands/blobs/blobs-get.mjs +44 -0
  16. package/src/commands/blobs/blobs-list.mjs +48 -0
  17. package/src/commands/blobs/blobs-set.mjs +54 -0
  18. package/src/commands/blobs/blobs.mjs +32 -0
  19. package/src/commands/blobs/index.mjs +1 -0
  20. package/src/commands/build/build.mjs +55 -67
  21. package/src/commands/build/index.mjs +1 -1
  22. package/src/commands/completion/completion.mjs +41 -46
  23. package/src/commands/completion/index.mjs +1 -1
  24. package/src/commands/deploy/deploy.mjs +675 -710
  25. package/src/commands/deploy/index.mjs +1 -1
  26. package/src/commands/dev/dev-exec.mjs +20 -32
  27. package/src/commands/dev/dev.mjs +217 -302
  28. package/src/commands/dev/index.mjs +1 -1
  29. package/src/commands/dev/types.d.ts +30 -0
  30. package/src/commands/env/env-clone.mjs +157 -184
  31. package/src/commands/env/env-get.mjs +49 -68
  32. package/src/commands/env/env-import.mjs +100 -119
  33. package/src/commands/env/env-list.mjs +104 -129
  34. package/src/commands/env/env-set.mjs +160 -185
  35. package/src/commands/env/env-unset.mjs +104 -122
  36. package/src/commands/env/env.mjs +28 -30
  37. package/src/commands/env/index.mjs +1 -1
  38. package/src/commands/functions/functions-build.mjs +29 -41
  39. package/src/commands/functions/functions-create.mjs +533 -601
  40. package/src/commands/functions/functions-invoke.mjs +193 -216
  41. package/src/commands/functions/functions-list.mjs +45 -55
  42. package/src/commands/functions/functions-serve.mjs +51 -61
  43. package/src/commands/functions/functions.mjs +26 -32
  44. package/src/commands/functions/index.mjs +1 -1
  45. package/src/commands/index.mjs +2 -2
  46. package/src/commands/init/index.mjs +1 -1
  47. package/src/commands/init/init.mjs +138 -167
  48. package/src/commands/integration/deploy.mjs +337 -399
  49. package/src/commands/integration/index.mjs +12 -13
  50. package/src/commands/link/index.mjs +1 -1
  51. package/src/commands/link/link.mjs +298 -317
  52. package/src/commands/lm/index.mjs +1 -1
  53. package/src/commands/lm/lm-info.mjs +23 -31
  54. package/src/commands/lm/lm-install.mjs +13 -17
  55. package/src/commands/lm/lm-setup.mjs +80 -84
  56. package/src/commands/lm/lm-uninstall.mjs +7 -12
  57. package/src/commands/lm/lm.mjs +18 -22
  58. package/src/commands/login/index.mjs +1 -1
  59. package/src/commands/login/login.mjs +35 -41
  60. package/src/commands/logout/index.mjs +1 -1
  61. package/src/commands/logout/logout.mjs +25 -31
  62. package/src/commands/main.mjs +166 -201
  63. package/src/commands/open/index.mjs +1 -1
  64. package/src/commands/open/open-admin.mjs +15 -18
  65. package/src/commands/open/open-site.mjs +16 -19
  66. package/src/commands/open/open.mjs +24 -27
  67. package/src/commands/recipes/common.mjs +23 -34
  68. package/src/commands/recipes/index.mjs +1 -1
  69. package/src/commands/recipes/recipes-list.mjs +13 -20
  70. package/src/commands/recipes/recipes.mjs +59 -72
  71. package/src/commands/serve/index.mjs +1 -1
  72. package/src/commands/serve/serve.mjs +142 -189
  73. package/src/commands/sites/index.mjs +2 -2
  74. package/src/commands/sites/sites-create-template.mjs +214 -236
  75. package/src/commands/sites/sites-create.mjs +145 -157
  76. package/src/commands/sites/sites-delete.mjs +75 -81
  77. package/src/commands/sites/sites-list.mjs +63 -66
  78. package/src/commands/sites/sites.mjs +18 -20
  79. package/src/commands/status/index.mjs +1 -1
  80. package/src/commands/status/status-hooks.mjs +32 -34
  81. package/src/commands/status/status.mjs +99 -106
  82. package/src/commands/switch/index.mjs +1 -1
  83. package/src/commands/switch/switch.mjs +32 -37
  84. package/src/commands/types.d.ts +31 -0
  85. package/src/commands/unlink/index.mjs +1 -1
  86. package/src/commands/unlink/unlink.mjs +23 -29
  87. package/src/commands/watch/index.mjs +1 -1
  88. package/src/commands/watch/watch.mjs +91 -105
  89. package/src/functions-templates/javascript/hello/{{name}}.js +2 -3
  90. package/src/lib/account.mjs +4 -5
  91. package/src/lib/api.mjs +22 -20
  92. package/src/lib/blobs/blobs.mjs +36 -45
  93. package/src/lib/build.mjs +82 -85
  94. package/src/lib/completion/constants.mjs +2 -4
  95. package/src/lib/completion/generate-autocompletion.mjs +33 -36
  96. package/src/lib/completion/get-autocompletion.mjs +31 -35
  97. package/src/lib/completion/index.mjs +1 -1
  98. package/src/lib/completion/script.mjs +12 -19
  99. package/src/lib/edge-functions/bootstrap.mjs +3 -5
  100. package/src/lib/edge-functions/consts.mjs +9 -10
  101. package/src/lib/edge-functions/deploy.mjs +28 -34
  102. package/src/lib/edge-functions/editor-helper.mjs +29 -42
  103. package/src/lib/edge-functions/headers.mjs +24 -26
  104. package/src/lib/edge-functions/internal.mjs +38 -44
  105. package/src/lib/edge-functions/proxy.mjs +229 -228
  106. package/src/lib/edge-functions/registry.mjs +473 -574
  107. package/src/lib/exec-fetcher.mjs +115 -122
  108. package/src/lib/fs.mjs +28 -27
  109. package/src/lib/functions/background.mjs +16 -20
  110. package/src/lib/functions/config.mjs +12 -9
  111. package/src/lib/functions/form-submissions-handler.mjs +143 -149
  112. package/src/lib/functions/local-proxy.mjs +40 -44
  113. package/src/lib/functions/memoized-build.mjs +19 -21
  114. package/src/lib/functions/netlify-function.mjs +269 -249
  115. package/src/lib/functions/registry.mjs +509 -568
  116. package/src/lib/functions/runtimes/go/index.mjs +62 -71
  117. package/src/lib/functions/runtimes/index.mjs +8 -15
  118. package/src/lib/functions/runtimes/js/builders/netlify-lambda.mjs +55 -64
  119. package/src/lib/functions/runtimes/js/builders/zisi.mjs +135 -154
  120. package/src/lib/functions/runtimes/js/constants.mjs +1 -1
  121. package/src/lib/functions/runtimes/js/index.mjs +92 -109
  122. package/src/lib/functions/runtimes/js/worker.mjs +43 -45
  123. package/src/lib/functions/runtimes/rust/index.mjs +64 -73
  124. package/src/lib/functions/scheduled.mjs +70 -88
  125. package/src/lib/functions/server.mjs +269 -327
  126. package/src/lib/functions/synchronous.mjs +118 -147
  127. package/src/lib/functions/utils.mjs +38 -46
  128. package/src/lib/geo-location.mjs +69 -81
  129. package/src/lib/http-agent.mjs +87 -90
  130. package/src/lib/images/proxy.mjs +97 -89
  131. package/src/lib/log.mjs +6 -9
  132. package/src/lib/path.mjs +2 -1
  133. package/src/lib/render-error-template.mjs +19 -20
  134. package/src/lib/settings.mjs +17 -19
  135. package/src/lib/spinner.mjs +21 -23
  136. package/src/lib/string.mjs +4 -2
  137. package/src/recipes/vscode/index.mjs +69 -85
  138. package/src/recipes/vscode/settings.mjs +53 -58
  139. package/src/utils/addons/compare.mjs +31 -32
  140. package/src/utils/addons/diffs/index.mjs +16 -17
  141. package/src/utils/addons/diffs/options.mjs +99 -101
  142. package/src/utils/addons/prepare.mjs +100 -97
  143. package/src/utils/addons/prompts.mjs +73 -76
  144. package/src/utils/addons/render.mjs +33 -36
  145. package/src/utils/addons/validation.mjs +19 -15
  146. package/src/utils/banner.mjs +11 -16
  147. package/src/utils/build-info.mjs +65 -66
  148. package/src/utils/command-helpers.mjs +185 -199
  149. package/src/utils/create-deferred.mjs +9 -12
  150. package/src/utils/create-stream-promise.mjs +54 -47
  151. package/src/utils/deploy/constants.mjs +9 -11
  152. package/src/utils/deploy/deploy-site.mjs +162 -182
  153. package/src/utils/deploy/hash-config.mjs +21 -21
  154. package/src/utils/deploy/hash-files.mjs +34 -38
  155. package/src/utils/deploy/hash-fns.mjs +149 -154
  156. package/src/utils/deploy/hasher-segments.mjs +58 -52
  157. package/src/utils/deploy/upload-files.mjs +99 -113
  158. package/src/utils/deploy/util.mjs +85 -91
  159. package/src/utils/detect-server-settings.mjs +236 -268
  160. package/src/utils/dev.mjs +163 -178
  161. package/src/utils/dot-env.mjs +37 -42
  162. package/src/utils/env/index.mjs +148 -148
  163. package/src/utils/execa.mjs +9 -13
  164. package/src/utils/feature-flags.mjs +6 -5
  165. package/src/utils/framework-server.mjs +43 -52
  166. package/src/utils/functions/constants.mjs +1 -1
  167. package/src/utils/functions/functions.mjs +30 -40
  168. package/src/utils/functions/get-functions.mjs +28 -29
  169. package/src/utils/functions/index.mjs +3 -3
  170. package/src/utils/get-global-config.mjs +33 -36
  171. package/src/utils/get-package-json.mjs +14 -15
  172. package/src/utils/get-repo-data.mjs +54 -64
  173. package/src/utils/get-site.mjs +14 -14
  174. package/src/utils/gh-auth.mjs +79 -100
  175. package/src/utils/gitignore.mjs +37 -40
  176. package/src/utils/headers.mjs +33 -35
  177. package/src/utils/hooks/requires-site-info.mjs +26 -22
  178. package/src/utils/init/config-github.mjs +207 -219
  179. package/src/utils/init/config-manual.mjs +83 -100
  180. package/src/utils/init/config.mjs +25 -26
  181. package/src/utils/init/node-version.mjs +23 -30
  182. package/src/utils/init/plugins.mjs +12 -8
  183. package/src/utils/init/utils.mjs +152 -172
  184. package/src/utils/live-tunnel.mjs +118 -141
  185. package/src/utils/lm/install.mjs +220 -259
  186. package/src/utils/lm/requirements.mjs +54 -63
  187. package/src/utils/lm/steps.mjs +31 -31
  188. package/src/utils/lm/ui.mjs +13 -20
  189. package/src/utils/open-browser.mjs +31 -32
  190. package/src/utils/parse-raw-flags.mjs +39 -35
  191. package/src/utils/proxy-server.mjs +84 -71
  192. package/src/utils/proxy.mjs +696 -750
  193. package/src/utils/read-repo-url.mjs +48 -47
  194. package/src/utils/redirects.mjs +49 -49
  195. package/src/utils/request-id.mjs +2 -4
  196. package/src/utils/rules-proxy.mjs +96 -100
  197. package/src/utils/run-build.mjs +109 -132
  198. package/src/utils/shell.mjs +99 -106
  199. package/src/utils/sign-redirect.mjs +14 -14
  200. package/src/utils/sites/utils.mjs +48 -55
  201. package/src/utils/state-config.mjs +101 -101
  202. package/src/utils/static-server.mjs +28 -34
  203. package/src/utils/telemetry/index.mjs +2 -2
  204. package/src/utils/telemetry/report-error.mjs +45 -49
  205. package/src/utils/telemetry/request.mjs +36 -43
  206. package/src/utils/telemetry/telemetry.mjs +90 -105
  207. package/src/utils/telemetry/utils.mjs +5 -6
  208. package/src/utils/telemetry/validation.mjs +55 -53
  209. package/src/utils/types.d.ts +46 -0
  210. package/src/utils/validation.mjs +10 -13
package/README.md CHANGED
@@ -20,6 +20,7 @@ See the [CLI command line reference](https://cli.netlify.com/commands/) to get s
20
20
  - [Documentation](#documentation)
21
21
  - [Commands](#commands)
22
22
  - [api](#api)
23
+ - [blobs](#blobs)
23
24
  - [build](#build)
24
25
  - [completion](#completion)
25
26
  - [deploy](#deploy)
@@ -47,7 +48,7 @@ See the [CLI command line reference](https://cli.netlify.com/commands/) to get s
47
48
 
48
49
  ## Installation
49
50
 
50
- Netlify CLI requires [Node.js](https://nodejs.org) version 14 or above. To install, run the following command from any
51
+ Netlify CLI requires [Node.js](https://nodejs.org) version 18.14.0 or above. To install, run the following command from any
51
52
  directory in your terminal:
52
53
 
53
54
  ```bash
@@ -86,147 +87,10 @@ netlify [command] help
86
87
  To learn how to log in to Netlify and start deploying sites, visit the
87
88
  [documentation on Netlify](https://docs.netlify.com/cli/get-started/).
88
89
 
89
- For a full command reference, see the list below, or visit [cli.netlify.com](https://cli.netlify.com/).
90
90
 
91
91
  ## Commands
92
92
 
93
- <!-- AUTO-GENERATED-CONTENT:START (GENERATE_COMMANDS_LIST) -->
94
- ### [api](/docs/commands/api.md)
95
-
96
- Run any Netlify API method
97
-
98
- ### [build](/docs/commands/build.md)
99
-
100
- Build on your local machine
101
-
102
- ### [completion](/docs/commands/completion.md)
103
-
104
- Generate shell completion script
105
-
106
- | Subcommand | description |
107
- |:--------------------------- |:-----|
108
- | [`completion:install`](/docs/commands/completion.md#completioninstall) | Generates completion script for your preferred shell |
109
-
110
-
111
- ### [deploy](/docs/commands/deploy.md)
112
-
113
- Create a new deploy from the contents of a folder
114
-
115
- ### [dev](/docs/commands/dev.md)
116
-
117
- Local dev server
118
-
119
- | Subcommand | description |
120
- |:--------------------------- |:-----|
121
- | [`dev:exec`](/docs/commands/dev.md#devexec) | Exec command |
122
-
123
-
124
- ### [env](/docs/commands/env.md)
125
-
126
- Control environment variables for the current site
127
-
128
- | Subcommand | description |
129
- |:--------------------------- |:-----|
130
- | [`env:clone`](/docs/commands/env.md#envclone) | Clone environment variables from one site to another |
131
- | [`env:get`](/docs/commands/env.md#envget) | Get resolved value of specified environment variable (includes netlify.toml) |
132
- | [`env:import`](/docs/commands/env.md#envimport) | Import and set environment variables from .env file |
133
- | [`env:list`](/docs/commands/env.md#envlist) | Lists resolved environment variables for site (includes netlify.toml) |
134
- | [`env:set`](/docs/commands/env.md#envset) | Set value of environment variable |
135
- | [`env:unset`](/docs/commands/env.md#envunset) | Unset an environment variable which removes it from the UI |
136
-
137
-
138
- ### [functions](/docs/commands/functions.md)
139
-
140
- Manage netlify functions
141
-
142
- | Subcommand | description |
143
- |:--------------------------- |:-----|
144
- | [`functions:build`](/docs/commands/functions.md#functionsbuild) | Build functions locally |
145
- | [`functions:create`](/docs/commands/functions.md#functionscreate) | Create a new function locally |
146
- | [`functions:invoke`](/docs/commands/functions.md#functionsinvoke) | Trigger a function while in netlify dev with simulated data, good for testing function calls including Netlify's Event Triggered Functions |
147
- | [`functions:list`](/docs/commands/functions.md#functionslist) | List functions that exist locally |
148
- | [`functions:serve`](/docs/commands/functions.md#functionsserve) | Serve functions locally |
149
-
150
-
151
- ### [init](/docs/commands/init.md)
152
-
153
- Configure continuous deployment for a new or existing site. To create a new site without continuous deployment, use `netlify sites:create`
154
-
155
- ### [integration](/docs/commands/integration.md)
156
-
157
- Manage Netlify Integrations built with the Netlify SDK
158
-
159
- | Subcommand | description |
160
- |:--------------------------- |:-----|
161
- | [`integration:deploy`](/docs/commands/integration.md#integrationdeploy) | Register, build, and deploy a private integration on Netlify |
162
-
163
-
164
- ### [link](/docs/commands/link.md)
165
-
166
- Link a local repo or project folder to an existing site on Netlify
167
-
168
- ### [login](/docs/commands/login.md)
169
-
170
- Login to your Netlify account
171
-
172
- ### [open](/docs/commands/open.md)
173
-
174
- Open settings for the site linked to the current folder
175
-
176
- | Subcommand | description |
177
- |:--------------------------- |:-----|
178
- | [`open:admin`](/docs/commands/open.md#openadmin) | Opens current site admin UI in Netlify |
179
- | [`open:site`](/docs/commands/open.md#opensite) | Opens current site url in browser |
180
-
181
-
182
- ### [recipes](/docs/commands/recipes.md)
183
-
184
- Create and modify files in a project using pre-defined recipes
185
-
186
- | Subcommand | description |
187
- |:--------------------------- |:-----|
188
- | [`recipes:list`](/docs/commands/recipes.md#recipeslist) | List the recipes available to create and modify files in a project |
189
-
190
-
191
- ### [serve](/docs/commands/serve.md)
192
-
193
- Build the site for production and serve locally. This does not watch the code for changes, so if you need to rebuild your site then you must exit and run `serve` again.
194
-
195
- ### [sites](/docs/commands/sites.md)
196
-
197
- Handle various site operations
198
-
199
- | Subcommand | description |
200
- |:--------------------------- |:-----|
201
- | [`sites:create`](/docs/commands/sites.md#sitescreate) | Create an empty site (advanced) |
202
- | [`sites:create-template`](/docs/commands/sites.md#sitescreate-template) | (Beta) Create a site from a starter template |
203
- | [`sites:delete`](/docs/commands/sites.md#sitesdelete) | Delete a site |
204
- | [`sites:list`](/docs/commands/sites.md#siteslist) | List all sites you have access to |
205
-
206
-
207
- ### [status](/docs/commands/status.md)
208
-
209
- Print status information
210
-
211
- | Subcommand | description |
212
- |:--------------------------- |:-----|
213
- | [`status:hooks`](/docs/commands/status.md#statushooks) | Print hook information of the linked site |
214
-
215
-
216
- ### [switch](/docs/commands/switch.md)
217
-
218
- Switch your active Netlify account
219
-
220
- ### [unlink](/docs/commands/unlink.md)
221
-
222
- Unlink a local folder from a Netlify site
223
-
224
- ### [watch](/docs/commands/watch.md)
225
-
226
- Watch for site deploy to finish
227
-
228
-
229
- <!-- AUTO-GENERATED-CONTENT:END -->
93
+ For a full command reference visit [cli.netlify.com](https://cli.netlify.com/).
230
94
 
231
95
  ## Contributing
232
96
 
@@ -1,22 +1,22 @@
1
1
  {
2
2
  "name": "netlify-cli",
3
- "version": "17.3.1",
3
+ "version": "17.4.0",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "netlify-cli",
9
- "version": "17.3.1",
9
+ "version": "17.4.0",
10
10
  "hasInstallScript": true,
11
11
  "license": "MIT",
12
12
  "dependencies": {
13
13
  "@bugsnag/js": "7.20.2",
14
14
  "@fastify/static": "6.10.2",
15
- "@netlify/blobs": "^4.0.0",
16
- "@netlify/build": "29.26.3",
15
+ "@netlify/blobs": "^6.3.0",
16
+ "@netlify/build": "29.26.6",
17
17
  "@netlify/build-info": "7.11.1",
18
- "@netlify/config": "20.9.0",
19
- "@netlify/edge-bundler": "^10.1.0",
18
+ "@netlify/config": "20.10.0",
19
+ "@netlify/edge-bundler": "10.1.2",
20
20
  "@netlify/local-functions-proxy": "1.1.1",
21
21
  "@netlify/zip-it-and-ship-it": "9.26.1",
22
22
  "@octokit/rest": "19.0.13",
@@ -68,23 +68,23 @@
68
68
  "https-proxy-agent": "5.0.1",
69
69
  "inquirer": "6.5.2",
70
70
  "inquirer-autocomplete-prompt": "1.4.0",
71
- "ipx": "^2.0.1",
71
+ "ipx": "2.0.1",
72
72
  "is-docker": "3.0.0",
73
73
  "is-stream": "3.0.0",
74
74
  "is-wsl": "2.2.0",
75
75
  "isexe": "2.0.0",
76
- "js-yaml": "^4.1.0",
76
+ "js-yaml": "4.1.0",
77
77
  "jsonwebtoken": "9.0.1",
78
78
  "jwt-decode": "3.1.2",
79
79
  "lambda-local": "2.1.2",
80
- "listr2": "^7.0.2",
80
+ "listr2": "7.0.2",
81
81
  "locate-path": "7.2.0",
82
82
  "lodash": "4.17.21",
83
83
  "log-symbols": "5.1.0",
84
84
  "log-update": "5.0.1",
85
85
  "minimist": "1.2.8",
86
86
  "multiparty": "4.2.3",
87
- "netlify": "13.1.10",
87
+ "netlify": "13.1.11",
88
88
  "netlify-headers-parser": "7.1.2",
89
89
  "netlify-redirect-parser": "14.2.0",
90
90
  "netlify-redirector": "0.5.0",
@@ -112,14 +112,14 @@
112
112
  "through2-map": "3.0.0",
113
113
  "to-readable-stream": "3.0.0",
114
114
  "toml": "3.0.0",
115
- "tomlify-j0.4": "^3.0.0",
115
+ "tomlify-j0.4": "3.0.0",
116
116
  "ulid": "2.3.0",
117
117
  "unixify": "1.0.0",
118
118
  "update-notifier": "6.0.2",
119
119
  "uuid": "9.0.0",
120
120
  "wait-port": "1.0.4",
121
121
  "write-file-atomic": "5.0.1",
122
- "zod": "^3.22.4"
122
+ "zod": "3.22.4"
123
123
  },
124
124
  "bin": {
125
125
  "netlify": "bin/run.mjs",
@@ -810,23 +810,23 @@
810
810
  "integrity": "sha512-4wMPu9iN3/HL97QblBsBay3E1etIciR84izI3U+4iALY+JHCrI+a2jO0qbAZ/nxKoegypYEaiiqWXylm+/zfrw=="
811
811
  },
812
812
  "node_modules/@netlify/blobs": {
813
- "version": "4.0.0",
814
- "resolved": "https://registry.npmjs.org/@netlify/blobs/-/blobs-4.0.0.tgz",
815
- "integrity": "sha512-jjAzsH5WCceUz8ubVlYppfhUKuTR4E6OBNherIdH7tYHWy4NnLQ5FQgVP9kR7Ps5HOxl3aPsr5ygu1KQY0mdTQ==",
813
+ "version": "6.3.0",
814
+ "resolved": "https://registry.npmjs.org/@netlify/blobs/-/blobs-6.3.0.tgz",
815
+ "integrity": "sha512-EcgttqwH7kmK5B9RO8hRwAx/pkO9RwfFoRl+B38UNiFN6L4T46Q9Vhxnp3EzXQxn7Le1RpwFnXhd+UAhyZod+g==",
816
816
  "engines": {
817
817
  "node": "^14.16.0 || >=16.0.0"
818
818
  }
819
819
  },
820
820
  "node_modules/@netlify/build": {
821
- "version": "29.26.3",
822
- "resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.26.3.tgz",
823
- "integrity": "sha512-4VVI6i0r+tBClvuuYwF4wlIMWFs0UNDaEZSHl4sKnjy6V6loxUrdVCIyHsH2lDjFeXxRbqoT8GkOoNZQ+hjFHw==",
821
+ "version": "29.26.6",
822
+ "resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.26.6.tgz",
823
+ "integrity": "sha512-NAnlCgvX6rmeEakKil6F06nMY0sXwRW0LumC8Mhnl5+b4SKTb9U2px97aBnWX5BXGa2T1RYHGuXjd+Vuefrc9A==",
824
824
  "dependencies": {
825
825
  "@bugsnag/js": "^7.0.0",
826
826
  "@honeycombio/opentelemetry-node": "^0.5.0",
827
827
  "@netlify/cache-utils": "^5.1.5",
828
- "@netlify/config": "^20.9.0",
829
- "@netlify/edge-bundler": "10.1.0",
828
+ "@netlify/config": "^20.10.0",
829
+ "@netlify/edge-bundler": "10.1.2",
830
830
  "@netlify/framework-info": "^9.8.10",
831
831
  "@netlify/functions-utils": "^5.2.40",
832
832
  "@netlify/git-utils": "^5.1.1",
@@ -1113,9 +1113,9 @@
1113
1113
  }
1114
1114
  },
1115
1115
  "node_modules/@netlify/build/node_modules/http2-wrapper": {
1116
- "version": "2.2.0",
1117
- "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.0.tgz",
1118
- "integrity": "sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==",
1116
+ "version": "2.2.1",
1117
+ "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz",
1118
+ "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==",
1119
1119
  "dependencies": {
1120
1120
  "quick-lru": "^5.1.1",
1121
1121
  "resolve-alpn": "^1.2.0"
@@ -1392,9 +1392,9 @@
1392
1392
  }
1393
1393
  },
1394
1394
  "node_modules/@netlify/config": {
1395
- "version": "20.9.0",
1396
- "resolved": "https://registry.npmjs.org/@netlify/config/-/config-20.9.0.tgz",
1397
- "integrity": "sha512-+bKrRDhoUiZbAbdILPtlF5tmR1Ttt6plHQawQVByw9fHaQZ0Kxh6hA896sVFgkR1wGqu2v/5OFhH2t9eJO0nuw==",
1395
+ "version": "20.10.0",
1396
+ "resolved": "https://registry.npmjs.org/@netlify/config/-/config-20.10.0.tgz",
1397
+ "integrity": "sha512-7CNoL5IPSRBzDVzxuQgltZ71D/vZ/oYR29sfN8EXjAFOZPSLtnZgborcPa9V9BXLN4N5h0hFp2A26lnnCttEFg==",
1398
1398
  "dependencies": {
1399
1399
  "chalk": "^5.0.0",
1400
1400
  "cron-parser": "^4.1.0",
@@ -1409,7 +1409,7 @@
1409
1409
  "is-plain-obj": "^4.0.0",
1410
1410
  "js-yaml": "^4.0.0",
1411
1411
  "map-obj": "^5.0.0",
1412
- "netlify": "^13.1.10",
1412
+ "netlify": "^13.1.11",
1413
1413
  "netlify-headers-parser": "^7.1.2",
1414
1414
  "netlify-redirect-parser": "^14.2.0",
1415
1415
  "node-fetch": "^3.3.1",
@@ -1613,9 +1613,9 @@
1613
1613
  }
1614
1614
  },
1615
1615
  "node_modules/@netlify/edge-bundler": {
1616
- "version": "10.1.0",
1617
- "resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-10.1.0.tgz",
1618
- "integrity": "sha512-l8Stf7RarqgOp6Py43DxG5PI/PLqgkFX0c3TXTDzekgP5G811QxxgIfEHc347Zm0bQAdZiO9F/iTXEAH2InB9Q==",
1616
+ "version": "10.1.2",
1617
+ "resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-10.1.2.tgz",
1618
+ "integrity": "sha512-OMAESYuDhfjugGI5uuDODpHQtHhjKkm7eI4R9R6TQoU27ga3zqcLw7rEEO17cNzIte1ZPCsH4cj/LJyMVMa3lA==",
1619
1619
  "dependencies": {
1620
1620
  "@import-maps/resolve": "^1.0.1",
1621
1621
  "@vercel/nft": "^0.24.3",
@@ -2608,9 +2608,9 @@
2608
2608
  }
2609
2609
  },
2610
2610
  "node_modules/@netlify/open-api": {
2611
- "version": "2.19.1",
2612
- "resolved": "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.19.1.tgz",
2613
- "integrity": "sha512-RkucRf8o0vYhCDXCRHWU/EdhkVE3JhkqKmZFvMW6qCPD206GV2Cfo9JGSKb0NdN+nmHSNaYmd+9dvT6I9MP4pw=="
2611
+ "version": "2.26.0",
2612
+ "resolved": "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.26.0.tgz",
2613
+ "integrity": "sha512-B7q+ySzQm6rJhaGbY0Pzqnb1p3FsBqwiPLnLtA17JgTsqmXgQ7j6OQImW9fRJy/Al1ob9M6Oxng/FA2c7aIW1g=="
2614
2614
  },
2615
2615
  "node_modules/@netlify/plugins-list": {
2616
2616
  "version": "6.72.0",
@@ -5153,11 +5153,11 @@
5153
5153
  "peer": true
5154
5154
  },
5155
5155
  "node_modules/@types/node": {
5156
- "version": "20.8.8",
5157
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.8.tgz",
5158
- "integrity": "sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ==",
5156
+ "version": "20.9.0",
5157
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.0.tgz",
5158
+ "integrity": "sha512-nekiGu2NDb1BcVofVcEKMIwzlx4NjHlcjhoxxKBNLtz15Y1z7MYf549DFvkHSId02Ax6kGwWntIBPC3l/JZcmw==",
5159
5159
  "dependencies": {
5160
- "undici-types": "~5.25.1"
5160
+ "undici-types": "~5.26.4"
5161
5161
  }
5162
5162
  },
5163
5163
  "node_modules/@types/normalize-package-data": {
@@ -12168,11 +12168,11 @@
12168
12168
  "integrity": "sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw=="
12169
12169
  },
12170
12170
  "node_modules/netlify": {
12171
- "version": "13.1.10",
12172
- "resolved": "https://registry.npmjs.org/netlify/-/netlify-13.1.10.tgz",
12173
- "integrity": "sha512-ByFz8S08HWVKd9r/lkTahZX7xSq4IRyPCUvuaduI4GHyQaSWEdVNK1krC05vlhL9W0SzDn8Yjowh0Ru4PKrOYw==",
12171
+ "version": "13.1.11",
12172
+ "resolved": "https://registry.npmjs.org/netlify/-/netlify-13.1.11.tgz",
12173
+ "integrity": "sha512-exrD6cqwo5avDNtU7YT9iuN0+yoW+aaEUxvr/39oP36wZRKreoPm6KNVisTR9d4lXrPeUG8XI+rERuLhwMQmdw==",
12174
12174
  "dependencies": {
12175
- "@netlify/open-api": "^2.19.1",
12175
+ "@netlify/open-api": "^2.26.0",
12176
12176
  "lodash-es": "^4.17.21",
12177
12177
  "micro-api-client": "^3.3.0",
12178
12178
  "node-fetch": "^3.0.0",
@@ -13307,9 +13307,9 @@
13307
13307
  }
13308
13308
  },
13309
13309
  "node_modules/postcss": {
13310
- "version": "8.4.23",
13311
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz",
13312
- "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==",
13310
+ "version": "8.4.31",
13311
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
13312
+ "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
13313
13313
  "funding": [
13314
13314
  {
13315
13315
  "type": "opencollective",
@@ -15686,9 +15686,9 @@
15686
15686
  "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q=="
15687
15687
  },
15688
15688
  "node_modules/undici-types": {
15689
- "version": "5.25.3",
15690
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.25.3.tgz",
15691
- "integrity": "sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA=="
15689
+ "version": "5.26.5",
15690
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
15691
+ "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="
15692
15692
  },
15693
15693
  "node_modules/unenv": {
15694
15694
  "version": "1.7.4",
@@ -17035,20 +17035,20 @@
17035
17035
  "integrity": "sha512-4wMPu9iN3/HL97QblBsBay3E1etIciR84izI3U+4iALY+JHCrI+a2jO0qbAZ/nxKoegypYEaiiqWXylm+/zfrw=="
17036
17036
  },
17037
17037
  "@netlify/blobs": {
17038
- "version": "4.0.0",
17039
- "resolved": "https://registry.npmjs.org/@netlify/blobs/-/blobs-4.0.0.tgz",
17040
- "integrity": "sha512-jjAzsH5WCceUz8ubVlYppfhUKuTR4E6OBNherIdH7tYHWy4NnLQ5FQgVP9kR7Ps5HOxl3aPsr5ygu1KQY0mdTQ=="
17038
+ "version": "6.3.0",
17039
+ "resolved": "https://registry.npmjs.org/@netlify/blobs/-/blobs-6.3.0.tgz",
17040
+ "integrity": "sha512-EcgttqwH7kmK5B9RO8hRwAx/pkO9RwfFoRl+B38UNiFN6L4T46Q9Vhxnp3EzXQxn7Le1RpwFnXhd+UAhyZod+g=="
17041
17041
  },
17042
17042
  "@netlify/build": {
17043
- "version": "29.26.3",
17044
- "resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.26.3.tgz",
17045
- "integrity": "sha512-4VVI6i0r+tBClvuuYwF4wlIMWFs0UNDaEZSHl4sKnjy6V6loxUrdVCIyHsH2lDjFeXxRbqoT8GkOoNZQ+hjFHw==",
17043
+ "version": "29.26.6",
17044
+ "resolved": "https://registry.npmjs.org/@netlify/build/-/build-29.26.6.tgz",
17045
+ "integrity": "sha512-NAnlCgvX6rmeEakKil6F06nMY0sXwRW0LumC8Mhnl5+b4SKTb9U2px97aBnWX5BXGa2T1RYHGuXjd+Vuefrc9A==",
17046
17046
  "requires": {
17047
17047
  "@bugsnag/js": "^7.0.0",
17048
17048
  "@honeycombio/opentelemetry-node": "^0.5.0",
17049
17049
  "@netlify/cache-utils": "^5.1.5",
17050
- "@netlify/config": "^20.9.0",
17051
- "@netlify/edge-bundler": "10.1.0",
17050
+ "@netlify/config": "^20.10.0",
17051
+ "@netlify/edge-bundler": "10.1.2",
17052
17052
  "@netlify/framework-info": "^9.8.10",
17053
17053
  "@netlify/functions-utils": "^5.2.40",
17054
17054
  "@netlify/git-utils": "^5.1.1",
@@ -17201,9 +17201,9 @@
17201
17201
  }
17202
17202
  },
17203
17203
  "http2-wrapper": {
17204
- "version": "2.2.0",
17205
- "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.0.tgz",
17206
- "integrity": "sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==",
17204
+ "version": "2.2.1",
17205
+ "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz",
17206
+ "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==",
17207
17207
  "requires": {
17208
17208
  "quick-lru": "^5.1.1",
17209
17209
  "resolve-alpn": "^1.2.0"
@@ -17419,9 +17419,9 @@
17419
17419
  }
17420
17420
  },
17421
17421
  "@netlify/config": {
17422
- "version": "20.9.0",
17423
- "resolved": "https://registry.npmjs.org/@netlify/config/-/config-20.9.0.tgz",
17424
- "integrity": "sha512-+bKrRDhoUiZbAbdILPtlF5tmR1Ttt6plHQawQVByw9fHaQZ0Kxh6hA896sVFgkR1wGqu2v/5OFhH2t9eJO0nuw==",
17422
+ "version": "20.10.0",
17423
+ "resolved": "https://registry.npmjs.org/@netlify/config/-/config-20.10.0.tgz",
17424
+ "integrity": "sha512-7CNoL5IPSRBzDVzxuQgltZ71D/vZ/oYR29sfN8EXjAFOZPSLtnZgborcPa9V9BXLN4N5h0hFp2A26lnnCttEFg==",
17425
17425
  "requires": {
17426
17426
  "chalk": "^5.0.0",
17427
17427
  "cron-parser": "^4.1.0",
@@ -17436,7 +17436,7 @@
17436
17436
  "is-plain-obj": "^4.0.0",
17437
17437
  "js-yaml": "^4.0.0",
17438
17438
  "map-obj": "^5.0.0",
17439
- "netlify": "^13.1.10",
17439
+ "netlify": "^13.1.11",
17440
17440
  "netlify-headers-parser": "^7.1.2",
17441
17441
  "netlify-redirect-parser": "^14.2.0",
17442
17442
  "node-fetch": "^3.3.1",
@@ -17554,9 +17554,9 @@
17554
17554
  }
17555
17555
  },
17556
17556
  "@netlify/edge-bundler": {
17557
- "version": "10.1.0",
17558
- "resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-10.1.0.tgz",
17559
- "integrity": "sha512-l8Stf7RarqgOp6Py43DxG5PI/PLqgkFX0c3TXTDzekgP5G811QxxgIfEHc347Zm0bQAdZiO9F/iTXEAH2InB9Q==",
17557
+ "version": "10.1.2",
17558
+ "resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-10.1.2.tgz",
17559
+ "integrity": "sha512-OMAESYuDhfjugGI5uuDODpHQtHhjKkm7eI4R9R6TQoU27ga3zqcLw7rEEO17cNzIte1ZPCsH4cj/LJyMVMa3lA==",
17560
17560
  "requires": {
17561
17561
  "@import-maps/resolve": "^1.0.1",
17562
17562
  "@vercel/nft": "^0.24.3",
@@ -18098,9 +18098,9 @@
18098
18098
  "integrity": "sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g=="
18099
18099
  },
18100
18100
  "@netlify/open-api": {
18101
- "version": "2.19.1",
18102
- "resolved": "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.19.1.tgz",
18103
- "integrity": "sha512-RkucRf8o0vYhCDXCRHWU/EdhkVE3JhkqKmZFvMW6qCPD206GV2Cfo9JGSKb0NdN+nmHSNaYmd+9dvT6I9MP4pw=="
18101
+ "version": "2.26.0",
18102
+ "resolved": "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.26.0.tgz",
18103
+ "integrity": "sha512-B7q+ySzQm6rJhaGbY0Pzqnb1p3FsBqwiPLnLtA17JgTsqmXgQ7j6OQImW9fRJy/Al1ob9M6Oxng/FA2c7aIW1g=="
18104
18104
  },
18105
18105
  "@netlify/plugins-list": {
18106
18106
  "version": "6.72.0",
@@ -19717,11 +19717,11 @@
19717
19717
  "peer": true
19718
19718
  },
19719
19719
  "@types/node": {
19720
- "version": "20.8.8",
19721
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.8.tgz",
19722
- "integrity": "sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ==",
19720
+ "version": "20.9.0",
19721
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.0.tgz",
19722
+ "integrity": "sha512-nekiGu2NDb1BcVofVcEKMIwzlx4NjHlcjhoxxKBNLtz15Y1z7MYf549DFvkHSId02Ax6kGwWntIBPC3l/JZcmw==",
19723
19723
  "requires": {
19724
- "undici-types": "~5.25.1"
19724
+ "undici-types": "~5.26.4"
19725
19725
  }
19726
19726
  },
19727
19727
  "@types/normalize-package-data": {
@@ -24855,11 +24855,11 @@
24855
24855
  "integrity": "sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw=="
24856
24856
  },
24857
24857
  "netlify": {
24858
- "version": "13.1.10",
24859
- "resolved": "https://registry.npmjs.org/netlify/-/netlify-13.1.10.tgz",
24860
- "integrity": "sha512-ByFz8S08HWVKd9r/lkTahZX7xSq4IRyPCUvuaduI4GHyQaSWEdVNK1krC05vlhL9W0SzDn8Yjowh0Ru4PKrOYw==",
24858
+ "version": "13.1.11",
24859
+ "resolved": "https://registry.npmjs.org/netlify/-/netlify-13.1.11.tgz",
24860
+ "integrity": "sha512-exrD6cqwo5avDNtU7YT9iuN0+yoW+aaEUxvr/39oP36wZRKreoPm6KNVisTR9d4lXrPeUG8XI+rERuLhwMQmdw==",
24861
24861
  "requires": {
24862
- "@netlify/open-api": "^2.19.1",
24862
+ "@netlify/open-api": "^2.26.0",
24863
24863
  "lodash-es": "^4.17.21",
24864
24864
  "micro-api-client": "^3.3.0",
24865
24865
  "node-fetch": "^3.0.0",
@@ -25629,9 +25629,9 @@
25629
25629
  "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs="
25630
25630
  },
25631
25631
  "postcss": {
25632
- "version": "8.4.23",
25633
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz",
25634
- "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==",
25632
+ "version": "8.4.31",
25633
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
25634
+ "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
25635
25635
  "requires": {
25636
25636
  "nanoid": "^3.3.6",
25637
25637
  "picocolors": "^1.0.0",
@@ -27416,9 +27416,9 @@
27416
27416
  "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q=="
27417
27417
  },
27418
27418
  "undici-types": {
27419
- "version": "5.25.3",
27420
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.25.3.tgz",
27421
- "integrity": "sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA=="
27419
+ "version": "5.26.5",
27420
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
27421
+ "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="
27422
27422
  },
27423
27423
  "unenv": {
27424
27424
  "version": "1.7.4",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "netlify-cli",
3
3
  "description": "Netlify command line tool",
4
- "version": "17.3.1",
4
+ "version": "17.4.0",
5
5
  "author": "Netlify Inc.",
6
6
  "type": "module",
7
7
  "engines": {
@@ -11,15 +11,16 @@
11
11
  "/bin",
12
12
  "/npm-shrinkwrap.json",
13
13
  "/scripts/postinstall.mjs",
14
- "/src/**/*.cjs",
15
14
  "/src/**/*.js",
16
15
  "/src/**/*.mjs",
16
+ "/src/**/types.d.ts",
17
17
  "/src/**/*.sh",
18
18
  "/src/**/*.ps1",
19
19
  "/src/functions-templates/**",
20
20
  "/src/lib/templates/**",
21
21
  "!/src/**/node_modules/**",
22
- "!/src/**/*.test.js"
22
+ "!/src/**/*.test.js",
23
+ "!/src/**/*.mts"
23
24
  ],
24
25
  "homepage": "https://github.com/netlify/cli",
25
26
  "keywords": [
@@ -38,17 +39,17 @@
38
39
  "url": "https://github.com/netlify/cli/issues"
39
40
  },
40
41
  "scripts": {
41
- "postinstall": "node ./scripts/postinstall.mjs",
42
- "prepublishOnly": "node ./scripts/prepare-for-publish.mjs"
42
+ "prepublishOnly": "node ./scripts/prepare-for-publish.mjs",
43
+ "postinstall": "node ./scripts/postinstall.mjs"
43
44
  },
44
45
  "dependencies": {
45
46
  "@bugsnag/js": "7.20.2",
46
47
  "@fastify/static": "6.10.2",
47
- "@netlify/blobs": "^4.0.0",
48
- "@netlify/build": "29.26.3",
48
+ "@netlify/blobs": "^6.3.0",
49
+ "@netlify/build": "29.26.6",
49
50
  "@netlify/build-info": "7.11.1",
50
- "@netlify/config": "20.9.0",
51
- "@netlify/edge-bundler": "^10.1.0",
51
+ "@netlify/config": "20.10.0",
52
+ "@netlify/edge-bundler": "10.1.2",
52
53
  "@netlify/local-functions-proxy": "1.1.1",
53
54
  "@netlify/zip-it-and-ship-it": "9.26.1",
54
55
  "@octokit/rest": "19.0.13",
@@ -100,23 +101,23 @@
100
101
  "https-proxy-agent": "5.0.1",
101
102
  "inquirer": "6.5.2",
102
103
  "inquirer-autocomplete-prompt": "1.4.0",
103
- "ipx": "^2.0.1",
104
+ "ipx": "2.0.1",
104
105
  "is-docker": "3.0.0",
105
106
  "is-stream": "3.0.0",
106
107
  "is-wsl": "2.2.0",
107
108
  "isexe": "2.0.0",
108
- "js-yaml": "^4.1.0",
109
+ "js-yaml": "4.1.0",
109
110
  "jsonwebtoken": "9.0.1",
110
111
  "jwt-decode": "3.1.2",
111
112
  "lambda-local": "2.1.2",
112
- "listr2": "^7.0.2",
113
+ "listr2": "7.0.2",
113
114
  "locate-path": "7.2.0",
114
115
  "lodash": "4.17.21",
115
116
  "log-symbols": "5.1.0",
116
117
  "log-update": "5.0.1",
117
118
  "minimist": "1.2.8",
118
119
  "multiparty": "4.2.3",
119
- "netlify": "13.1.10",
120
+ "netlify": "13.1.11",
120
121
  "netlify-headers-parser": "7.1.2",
121
122
  "netlify-redirect-parser": "14.2.0",
122
123
  "netlify-redirector": "0.5.0",
@@ -144,13 +145,13 @@
144
145
  "through2-map": "3.0.0",
145
146
  "to-readable-stream": "3.0.0",
146
147
  "toml": "3.0.0",
147
- "tomlify-j0.4": "^3.0.0",
148
+ "tomlify-j0.4": "3.0.0",
148
149
  "ulid": "2.3.0",
149
150
  "unixify": "1.0.0",
150
151
  "update-notifier": "6.0.2",
151
152
  "uuid": "9.0.0",
152
153
  "wait-port": "1.0.4",
153
154
  "write-file-atomic": "5.0.1",
154
- "zod": "^3.22.4"
155
+ "zod": "3.22.4"
155
156
  }
156
157
  }