Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions apps/docs/content/company/pricing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ Services in Zerops require computing resources that are billed separately from y
</tbody>
</table>

:::note Daily Spending Control
You can set daily spending limits in GUI for your project to control costs and avoid unexpected charges. This provides an alternative to configuring automatic resource scaling ranges while keeping your services running optimally.
:::

## Additional Services

Enhance your deployment with these optional services to meet specific requirements for networking, storage, and data transfer.
Expand Down
6 changes: 5 additions & 1 deletion apps/docs/content/features/env-variables.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ import Image from '/src/components/Image';

Zerops manages environment variables at two scopes: service level and project level. These variables are handled automatically without requiring `.env` files.

:::note
Only runtime variables are visible and editable in GUI.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

visible jsou všechny

:::

## Service Variables

Variables that are specific to individual [services](/features/infrastructure#services).
Expand All @@ -17,7 +21,7 @@ You can define service-level variables in two ways:

#### 1. Build & Runtime Variables

These variables are defined with `envVariables` attribute in the `build` or `run` section of your [zerops.yaml](/zerops-yaml/specification) file and are accessible within their respective containers.
These variables are defined with `envVariables` attribute in the [build](/zerops-yaml/specification#envvariables-) or [run](/zerops-yaml/specification#envvariables--1) section of your `zerops.yaml` file and are accessible within their respective containers.

```yaml title="zerops.yaml"
...
Expand Down
2 changes: 2 additions & 0 deletions apps/docs/content/references/cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ zCLI will be installed inside `/usr/bin` or `/usr/local/bin`.

### Windows

Execute following command in PowerShell:

```powershell
irm https://zerops.io/zcli/install.ps1 | iex
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ Configure how the balancer communicates with backend services:
<th className="w-fit whitespace-nowrap">Parameter</th>
<th className="w-fit whitespace-nowrap">Default</th>
<th className="w-fit whitespace-nowrap">Range</th>
<th className="w-full">Description</th>
</tr>
</thead>
<tbody>
Expand All @@ -193,42 +192,36 @@ Configure how the balancer communicates with backend services:
<td className="w-fit whitespace-nowrap">proxy_request_buffering</td>
<td className="w-fit whitespace-nowrap">off</td>
<td className="w-fit whitespace-nowrap">on/off</td>
<td className="w-full">Buffer client request bodies before forwarding</td>
</tr>
<tr>
<td className="w-fit font-semibold whitespace-nowrap">Enable buffering of responses from proxied server</td>
<td className="w-fit whitespace-nowrap">proxy_buffering</td>
<td className="w-fit whitespace-nowrap">on</td>
<td className="w-fit whitespace-nowrap">on/off</td>
<td className="w-full">Buffer responses from backend services</td>
</tr>
<tr>
<td className="w-fit font-semibold whitespace-nowrap">Size of the buffer used for reading the first part of the response</td>
<td className="w-fit whitespace-nowrap">proxy_buffer_size</td>
<td className="w-fit whitespace-nowrap">32k</td>
<td className="w-fit whitespace-nowrap">1k-256k</td>
<td className="w-full">Buffer size for first part of backend response</td>
</tr>
<tr>
<td className="w-fit font-semibold whitespace-nowrap">Number of buffers used for reading a response from the proxied server</td>
<td className="w-fit whitespace-nowrap">proxy_buffers_number</td>
<td className="w-fit whitespace-nowrap">4</td>
<td className="w-fit whitespace-nowrap">1-16</td>
<td className="w-full">Number of buffers for reading backend responses</td>
</tr>
<tr>
<td className="w-fit font-semibold whitespace-nowrap">Size of buffers for reading a response from the proxied server</td>
<td className="w-fit whitespace-nowrap">proxy_buffers_size</td>
<td className="w-fit whitespace-nowrap">256k</td>
<td className="w-fit whitespace-nowrap">1k-1m</td>
<td className="w-full">Size of buffers for reading backend responses</td>
</tr>
<tr>
<td className="w-fit font-semibold whitespace-nowrap">Size of buffers that can be busy sending response to the client</td>
<td className="w-fit whitespace-nowrap">proxy_busy_buffers_size</td>
<td className="w-fit whitespace-nowrap">256k</td>
<td className="w-fit whitespace-nowrap">1k-1m</td>
<td className="w-full">Size of buffers for sending response to client</td>
</tr>
</tbody>
</table>
Expand Down
2 changes: 0 additions & 2 deletions apps/docs/content/references/networking/public-access.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@ Zerops subdomains provide quick public access through `.zerops.app` addresses, i

Once enabled, Zerops assigns a unique subdomain for your application. If you've defined multiple [internal ports](/zerops-yaml/specification#ports-) with HTTP support in your `zerops.yaml`, each port receives its own unique `.zerops.app` subdomain.

<GroupCards heading="Configure internal ports for your Runtime" items={languages} />

### Technical Implementation

When using Zerops subdomains:
Expand Down
16 changes: 8 additions & 8 deletions apps/docs/static/llms-full.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1309,6 +1309,9 @@ Services in Zerops require computing resources that are billed separately from y
$0.05 per 0.5 GB / 30 days
Storage space for your applications and data

:::note Daily Spending Control
You can set daily spending limits in GUI for your project to control costs and avoid unexpected charges. This provides an alternative to configuring automatic resource scaling ranges while keeping your services running optimally.
:::
## Additional Services
Enhance your deployment with these optional services to meet specific requirements for networking, storage, and data transfer.

Expand Down Expand Up @@ -5632,12 +5635,15 @@ This configuration allows you to:
# Features > Env Variables

Zerops manages environment variables at two scopes: service level and project level. These variables are handled automatically without requiring `.env` files.
:::note
Only runtime variables are visible and editable in GUI.
:::
## Service Variables
Variables that are specific to individual [services](/features/infrastructure#services).
### User-Defined Variables
You can define service-level variables in two ways:
#### 1. Build & Runtime Variables
These variables are defined with `envVariables` attribute in the `build` or `run` section of your [zerops.yaml](/zerops-yaml/specification) file and are accessible within their respective containers.
These variables are defined with `envVariables` attribute in the [build](/zerops-yaml/specification#envvariables-) or [run](/zerops-yaml/specification#envvariables--1) section of your `zerops.yaml` file and are accessible within their respective containers.
```yaml title="zerops.yaml"
...
build:
Expand Down Expand Up @@ -18583,6 +18589,7 @@ curl -L https://zerops.io/zcli/install.sh | sh
```
zCLI will be installed inside `/usr/bin` or `/usr/local/bin`.
### Windows
Execute following command in PowerShell:
```powershell
irm https://zerops.io/zcli/install.ps1 | iex
```
Expand Down Expand Up @@ -21556,43 +21563,36 @@ Configure how the balancer communicates with backend services:
Parameter
Default
Range
Description

Enable buffering of client request body
proxy_request_buffering
off
on/off
Buffer client request bodies before forwarding

Enable buffering of responses from proxied server
proxy_buffering
on
on/off
Buffer responses from backend services

Size of the buffer used for reading the first part of the response
proxy_buffer_size
32k
1k-256k
Buffer size for first part of backend response

Number of buffers used for reading a response from the proxied server
proxy_buffers_number
4
1-16
Number of buffers for reading backend responses

Size of buffers for reading a response from the proxied server
proxy_buffers_size
256k
1k-1m
Size of buffers for reading backend responses

Size of buffers that can be busy sending response to the client
proxy_busy_buffers_size
256k
1k-1m
Size of buffers for sending response to client

:::tip Recommendations
- **Real-time APIs**: Set `proxy_buffering` to off for lower latency
Expand Down
5 changes: 4 additions & 1 deletion apps/docs/static/llms-small.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5440,12 +5440,15 @@ This configuration allows you to:
# Features > Env Variables

Zerops manages environment variables at two scopes: service level and project level. These variables are handled automatically without requiring `.env` files.
:::note
Only runtime variables are visible and editable in GUI.
:::
## Service Variables
Variables that are specific to individual [services](/features/infrastructure#services).
### User-Defined Variables
You can define service-level variables in two ways:
#### 1. Build & Runtime Variables
These variables are defined with `envVariables` attribute in the `build` or `run` section of your [zerops.yaml](/zerops-yaml/specification) file and are accessible within their respective containers.
These variables are defined with `envVariables` attribute in the [build](/zerops-yaml/specification#envvariables-) or [run](/zerops-yaml/specification#envvariables--1) section of your `zerops.yaml` file and are accessible within their respective containers.
```yaml title="zerops.yaml"
...
build:
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"dependencies": {
"autoprefixer": "10.4.14",
"eslint": "^8.36.0",
"eslint-config-docs": "0.0.0",
"eslint-plugin-prettier": "5.2.3",
"postcss": "8.4.31",
"prettier": "3.3.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"next": "latest"
"next": "15.2.3"
},
"devDependencies": {
"eslint": "^8.36.0"
Expand Down
98 changes: 49 additions & 49 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2397,10 +2397,10 @@
resolved "https://registry.yarnpkg.com/@next/env/-/env-14.2.25.tgz#936d10b967e103e49a4bcea1e97292d5605278dd"
integrity sha512-JnzQ2cExDeG7FxJwqAksZ3aqVJrHjFwZQAEJ9gQZSoEhIow7SNoKZzju/AwQ+PLIR4NY8V0rhcVozx/2izDO0w==

"@next/env@15.1.2":
version "15.1.2"
resolved "https://registry.yarnpkg.com/@next/env/-/env-15.1.2.tgz#fa36e47bbaa33b9ecac228aa786bb05bbc15351c"
integrity sha512-Hm3jIGsoUl6RLB1vzY+dZeqb+/kWPZ+h34yiWxW0dV87l8Im/eMOwpOA+a0L78U0HM04syEjXuRlCozqpwuojQ==
"@next/env@15.2.3":
version "15.2.3"
resolved "https://registry.yarnpkg.com/@next/env/-/env-15.2.3.tgz#037ee37c4d61fcbdbb212694cc33d7dcf6c7975a"
integrity sha512-a26KnbW9DFEUsSxAxKBORR/uD9THoYoKbkpFywMN/AFvboTt94b8+g/07T8J6ACsdLag8/PDU60ov4rPxRAixw==

"@next/[email protected]":
version "14.2.4"
Expand All @@ -2414,70 +2414,70 @@
resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.25.tgz#7bcccfda0c0ff045c45fbe34c491b7368e373e3d"
integrity sha512-09clWInF1YRd6le00vt750s3m7SEYNehz9C4PUcSu3bAdCTpjIV4aTYQZ25Ehrr83VR1rZeqtKUPWSI7GfuKZQ==

"@next/swc-darwin-arm64@15.1.2":
version "15.1.2"
resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.1.2.tgz#822265999fc76f828f4c671a5ef861b8e2c5213e"
integrity sha512-b9TN7q+j5/7+rGLhFAVZiKJGIASuo8tWvInGfAd8wsULjB1uNGRCj1z1WZwwPWzVQbIKWFYqc+9L7W09qwt52w==
"@next/swc-darwin-arm64@15.2.3":
version "15.2.3"
resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.2.3.tgz#2688c185651ef7a16e5642c85048cc4e151159fa"
integrity sha512-uaBhA8aLbXLqwjnsHSkxs353WrRgQgiFjduDpc7YXEU0B54IKx3vU+cxQlYwPCyC8uYEEX7THhtQQsfHnvv8dw==

"@next/[email protected]":
version "14.2.25"
resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.25.tgz#b489e209d7b405260b73f69a38186ed150fb7a08"
integrity sha512-V+iYM/QR+aYeJl3/FWWU/7Ix4b07ovsQ5IbkwgUK29pTHmq+5UxeDr7/dphvtXEq5pLB/PucfcBNh9KZ8vWbug==

"@next/swc-darwin-x64@15.1.2":
version "15.1.2"
resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-15.1.2.tgz#78d277bce3d35c6e8d9ad423b6f5b0031aa9a1e2"
integrity sha512-caR62jNDUCU+qobStO6YJ05p9E+LR0EoXh1EEmyU69cYydsAy7drMcOlUlRtQihM6K6QfvNwJuLhsHcCzNpqtA==
"@next/swc-darwin-x64@15.2.3":
version "15.2.3"
resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-15.2.3.tgz#3e802259b2c9a4e2ad55ff827f41f775b726fc7d"
integrity sha512-pVwKvJ4Zk7h+4hwhqOUuMx7Ib02u3gDX3HXPKIShBi9JlYllI0nU6TWLbPT94dt7FSi6mSBhfc2JrHViwqbOdw==

"@next/[email protected]":
version "14.2.25"
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.25.tgz#ba064fabfdce0190d9859493d8232fffa84ef2e2"
integrity sha512-LFnV2899PJZAIEHQ4IMmZIgL0FBieh5keMnriMY1cK7ompR+JUd24xeTtKkcaw8QmxmEdhoE5Mu9dPSuDBgtTg==

"@next/swc-linux-arm64-gnu@15.1.2":
version "15.1.2"
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.1.2.tgz#4d48c8c37da869b0fdbb51f3f3f71df7a3b6b1bb"
integrity sha512-fHHXBusURjBmN6VBUtu6/5s7cCeEkuGAb/ZZiGHBLVBXMBy4D5QpM8P33Or8JD1nlOjm/ZT9sEE5HouQ0F+hUA==
"@next/swc-linux-arm64-gnu@15.2.3":
version "15.2.3"
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.2.3.tgz#315d7b54b89153f125bdc3e40bcb7ccf94ef124b"
integrity sha512-50ibWdn2RuFFkOEUmo9NCcQbbV9ViQOrUfG48zHBCONciHjaUKtHcYFiCwBVuzD08fzvzkWuuZkd4AqbvKO7UQ==

"@next/[email protected]":
version "14.2.25"
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.25.tgz#bf0018267e4e0fbfa1524750321f8cae855144a3"
integrity sha512-QC5y5PPTmtqFExcKWKYgUNkHeHE/z3lUsu83di488nyP0ZzQ3Yse2G6TCxz6nNsQwgAx1BehAJTZez+UQxzLfw==

"@next/swc-linux-arm64-musl@15.1.2":
version "15.1.2"
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.1.2.tgz#0efbaffc2bc3fad4a6458c91b1655b0c3d509577"
integrity sha512-9CF1Pnivij7+M3G74lxr+e9h6o2YNIe7QtExWq1KUK4hsOLTBv6FJikEwCaC3NeYTflzrm69E5UfwEAbV2U9/g==
"@next/swc-linux-arm64-musl@15.2.3":
version "15.2.3"
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.2.3.tgz#a1a458eb7cf19c59d2014ee388a7305e9a77973f"
integrity sha512-2gAPA7P652D3HzR4cLyAuVYwYqjG0mt/3pHSWTCyKZq/N/dJcUAEoNQMyUmwTZWCJRKofB+JPuDVP2aD8w2J6Q==

"@next/[email protected]":
version "14.2.25"
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.25.tgz#64f5a6016a7148297ee80542e0fd788418a32472"
integrity sha512-y6/ML4b9eQ2D/56wqatTJN5/JR8/xdObU2Fb1RBidnrr450HLCKr6IJZbPqbv7NXmje61UyxjF5kvSajvjye5w==

"@next/swc-linux-x64-gnu@15.1.2":
version "15.1.2"
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.1.2.tgz#fcdb19e2a7602f85f103190539d0cf42eca7f217"
integrity sha512-tINV7WmcTUf4oM/eN3Yuu/f8jQ5C6AkueZPKeALs/qfdfX57eNv4Ij7rt0SA6iZ8+fMobVfcFVv664Op0caCCg==
"@next/swc-linux-x64-gnu@15.2.3":
version "15.2.3"
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.2.3.tgz#a3cf22eda7601536ccd68e8ba4c1bfb4a1a33460"
integrity sha512-ODSKvrdMgAJOVU4qElflYy1KSZRM3M45JVbeZu42TINCMG3anp7YCBn80RkISV6bhzKwcUqLBAmOiWkaGtBA9w==

"@next/[email protected]":
version "14.2.25"
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.25.tgz#58dc636d7c55828478159546f7b95ab1e902301c"
integrity sha512-sPX0TSXHGUOZFvv96GoBXpB3w4emMqKeMgemrSxI7A6l55VBJp/RKYLwZIB9JxSqYPApqiREaIIap+wWq0RU8w==

"@next/swc-linux-x64-musl@15.1.2":
version "15.1.2"
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.1.2.tgz#06b09f1712498dd5c61fac10c56a09535469b4c4"
integrity sha512-jf2IseC4WRsGkzeUw/cK3wci9pxR53GlLAt30+y+B+2qAQxMw6WAC3QrANIKxkcoPU3JFh/10uFfmoMDF9JXKg==
"@next/swc-linux-x64-musl@15.2.3":
version "15.2.3"
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.2.3.tgz#0e33c1224c76aa3078cc2249c80ef583f9d7a943"
integrity sha512-ZR9kLwCWrlYxwEoytqPi1jhPd1TlsSJWAc+H/CJHmHkf2nD92MQpSRIURR1iNgA/kuFSdxB8xIPt4p/T78kwsg==

"@next/[email protected]":
version "14.2.25"
resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.25.tgz#93562d447c799bded1e89c1a62d5195a2a8c6c0d"
integrity sha512-ReO9S5hkA1DU2cFCsGoOEp7WJkhFzNbU/3VUF6XxNGUCQChyug6hZdYL/istQgfT/GWE6PNIg9cm784OI4ddxQ==

"@next/swc-win32-arm64-msvc@15.1.2":
version "15.1.2"
resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.1.2.tgz#63159223241ff45e8df76b24fc979bbb933c74df"
integrity sha512-wvg7MlfnaociP7k8lxLX4s2iBJm4BrNiNFhVUY+Yur5yhAJHfkS8qPPeDEUH8rQiY0PX3u/P7Q/wcg6Mv6GSAA==
"@next/swc-win32-arm64-msvc@15.2.3":
version "15.2.3"
resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.2.3.tgz#4e0583fb981b931915a9ad22e579f9c9d5b803dd"
integrity sha512-+G2FrDcfm2YDbhDiObDU/qPriWeiz/9cRR0yMWJeTLGGX6/x8oryO3tt7HhodA1vZ8r2ddJPCjtLcpaVl7TE2Q==

"@next/[email protected]":
version "14.2.25"
Expand All @@ -2489,10 +2489,10 @@
resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.25.tgz#3969c66609e683ec63a6a9f320a855f7be686a08"
integrity sha512-KSznmS6eFjQ9RJ1nEc66kJvtGIL1iZMYmGEXsZPh2YtnLtqrgdVvKXJY2ScjjoFnG6nGLyPFR0UiEvDwVah4Tw==

"@next/swc-win32-x64-msvc@15.1.2":
version "15.1.2"
resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.1.2.tgz#6e6b33b1d725c0e98fa76773fe437fb02ad6540b"
integrity sha512-D3cNA8NoT3aWISWmo7HF5Eyko/0OdOO+VagkoJuiTk7pyX3P/b+n8XA/MYvyR+xSVcbKn68B1rY9fgqjNISqzQ==
"@next/swc-win32-x64-msvc@15.2.3":
version "15.2.3"
resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.2.3.tgz#727b90c7dcc2279344115a94b99d93d452956f02"
integrity sha512-gHYS9tc+G2W0ZC8rBL+H6RdtXIyk40uLiaos0yj5US85FNhbFEndMA2nW3z47nzOWiSvXTZ5kBClc3rD0zJg0w==

"@nicolo-ribaudo/[email protected]":
version "5.1.1-v1"
Expand Down Expand Up @@ -11262,27 +11262,27 @@ [email protected]:
"@next/swc-win32-ia32-msvc" "14.2.25"
"@next/swc-win32-x64-msvc" "14.2.25"

next@latest:
version "15.1.2"
resolved "https://registry.yarnpkg.com/next/-/next-15.1.2.tgz#305d093a9f3d6900b53fa4abb5b213264b22047c"
integrity sha512-nLJDV7peNy+0oHlmY2JZjzMfJ8Aj0/dd3jCwSZS8ZiO5nkQfcZRqDrRN3U5rJtqVTQneIOGZzb6LCNrk7trMCQ==
next@15.2.3:
version "15.2.3"
resolved "https://registry.yarnpkg.com/next/-/next-15.2.3.tgz#1ac803c08076d47eb5b431cb625135616c6bec7e"
integrity sha512-x6eDkZxk2rPpu46E1ZVUWIBhYCLszmUY6fvHBFcbzJ9dD+qRX6vcHusaqqDlnY+VngKzKbAiG2iRCkPbmi8f7w==
dependencies:
"@next/env" "15.1.2"
"@next/env" "15.2.3"
"@swc/counter" "0.1.3"
"@swc/helpers" "0.5.15"
busboy "1.6.0"
caniuse-lite "^1.0.30001579"
postcss "8.4.31"
styled-jsx "5.1.6"
optionalDependencies:
"@next/swc-darwin-arm64" "15.1.2"
"@next/swc-darwin-x64" "15.1.2"
"@next/swc-linux-arm64-gnu" "15.1.2"
"@next/swc-linux-arm64-musl" "15.1.2"
"@next/swc-linux-x64-gnu" "15.1.2"
"@next/swc-linux-x64-musl" "15.1.2"
"@next/swc-win32-arm64-msvc" "15.1.2"
"@next/swc-win32-x64-msvc" "15.1.2"
"@next/swc-darwin-arm64" "15.2.3"
"@next/swc-darwin-x64" "15.2.3"
"@next/swc-linux-arm64-gnu" "15.2.3"
"@next/swc-linux-arm64-musl" "15.2.3"
"@next/swc-linux-x64-gnu" "15.2.3"
"@next/swc-linux-x64-musl" "15.2.3"
"@next/swc-win32-arm64-msvc" "15.2.3"
"@next/swc-win32-x64-msvc" "15.2.3"
sharp "^0.33.5"

no-case@^3.0.4:
Expand Down