vercel-cli 41.1.0__py3-none-any.whl

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.

Potentially problematic release.


This version of vercel-cli might be problematic. Click here for more details.

Files changed (99) hide show
  1. vercel_cli/vendor/LICENSE +202 -0
  2. vercel_cli/vendor/README.md +63 -0
  3. vercel_cli/vendor/dist/VERCEL_DIR_README.txt +11 -0
  4. vercel_cli/vendor/dist/builder-worker.js +62 -0
  5. vercel_cli/vendor/dist/get-latest-worker.js +272 -0
  6. vercel_cli/vendor/dist/index.js +172693 -0
  7. vercel_cli/vendor/dist/vc.js +11 -0
  8. vercel_cli/vendor/node_modules/.package-lock.json +18 -0
  9. vercel_cli/vendor/node_modules/@vercel/build-utils/CHANGELOG.md +488 -0
  10. vercel_cli/vendor/node_modules/@vercel/build-utils/LICENSE +202 -0
  11. vercel_cli/vendor/node_modules/@vercel/build-utils/build.mjs +3 -0
  12. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/clone-env.d.ts +10 -0
  13. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/clone-env.js +43 -0
  14. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/debug.d.ts +1 -0
  15. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/debug.js +31 -0
  16. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/default-cache-path-glob.d.ts +1 -0
  17. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/default-cache-path-glob.js +28 -0
  18. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/edge-function.d.ts +41 -0
  19. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/edge-function.js +40 -0
  20. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/errors.d.ts +39 -0
  21. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/errors.js +95 -0
  22. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-blob.d.ts +23 -0
  23. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-blob.js +67 -0
  24. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-fs-ref.d.ts +27 -0
  25. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-fs-ref.js +113 -0
  26. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-ref.d.ts +38 -0
  27. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-ref.js +147 -0
  28. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/download.d.ts +9 -0
  29. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/download.js +136 -0
  30. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/get-writable-directory.d.ts +1 -0
  31. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/get-writable-directory.js +32 -0
  32. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/glob.d.ts +10 -0
  33. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/glob.js +111 -0
  34. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/node-version.d.ts +9 -0
  35. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/node-version.js +180 -0
  36. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/normalize-path.d.ts +4 -0
  37. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/normalize-path.js +31 -0
  38. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/read-config-file.d.ts +1 -0
  39. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/read-config-file.js +76 -0
  40. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/rename.d.ts +11 -0
  41. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/rename.js +30 -0
  42. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/run-user-scripts.d.ts +206 -0
  43. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/run-user-scripts.js +944 -0
  44. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/stream-to-buffer.d.ts +3 -0
  45. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/stream-to-buffer.js +87 -0
  46. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-ignore-filter.d.ts +1 -0
  47. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-ignore-filter.js +90 -0
  48. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-installed-package-version.d.ts +1 -0
  49. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-installed-package-version.js +53 -0
  50. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-platform-env.d.ts +5 -0
  51. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-platform-env.js +45 -0
  52. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-prefixed-env-vars.d.ts +14 -0
  53. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-prefixed-env-vars.js +51 -0
  54. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/hard-link-dir.d.ts +1 -0
  55. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/hard-link-dir.js +104 -0
  56. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.d.ts +33 -0
  57. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.js +24390 -0
  58. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/lambda.d.ts +81 -0
  59. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/lambda.js +231 -0
  60. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/nodejs-lambda.d.ts +16 -0
  61. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/nodejs-lambda.js +44 -0
  62. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/os.d.ts +3 -0
  63. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/os.js +62 -0
  64. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/prerender.d.ts +37 -0
  65. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/prerender.js +169 -0
  66. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/schemas.d.ts +60 -0
  67. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/schemas.js +87 -0
  68. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/should-serve.d.ts +2 -0
  69. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/should-serve.js +47 -0
  70. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/trace/constants.d.ts +2 -0
  71. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/trace/constants.js +31 -0
  72. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/trace/index.d.ts +3 -0
  73. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/trace/index.js +33 -0
  74. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/trace/trace.d.ts +37 -0
  75. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/trace/trace.js +92 -0
  76. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/types.d.ts +503 -0
  77. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/types.js +51 -0
  78. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/validate-npmrc.d.ts +12 -0
  79. vercel_cli/vendor/node_modules/@vercel/build-utils/dist/validate-npmrc.js +41 -0
  80. vercel_cli/vendor/node_modules/@vercel/build-utils/file-blob.js +1 -0
  81. vercel_cli/vendor/node_modules/@vercel/build-utils/file-fs-ref.js +1 -0
  82. vercel_cli/vendor/node_modules/@vercel/build-utils/file-ref.js +1 -0
  83. vercel_cli/vendor/node_modules/@vercel/build-utils/fs/download.js +1 -0
  84. vercel_cli/vendor/node_modules/@vercel/build-utils/fs/get-writable-directory.js +1 -0
  85. vercel_cli/vendor/node_modules/@vercel/build-utils/fs/glob.js +1 -0
  86. vercel_cli/vendor/node_modules/@vercel/build-utils/fs/rename.js +1 -0
  87. vercel_cli/vendor/node_modules/@vercel/build-utils/fs/run-user-scripts.js +1 -0
  88. vercel_cli/vendor/node_modules/@vercel/build-utils/fs/stream-to-buffer.js +1 -0
  89. vercel_cli/vendor/node_modules/@vercel/build-utils/lambda.js +1 -0
  90. vercel_cli/vendor/node_modules/@vercel/build-utils/package.json +60 -0
  91. vercel_cli/vendor/node_modules/@vercel/python/LICENSE +202 -0
  92. vercel_cli/vendor/node_modules/@vercel/python/dist/index.js +3132 -0
  93. vercel_cli/vendor/node_modules/@vercel/python/package.json +36 -0
  94. vercel_cli/vendor/node_modules/@vercel/python/vc_init.py +681 -0
  95. vercel_cli/vendor/package.json +40 -0
  96. vercel_cli-41.1.0.dist-info/METADATA +188 -0
  97. vercel_cli-41.1.0.dist-info/RECORD +99 -0
  98. vercel_cli-41.1.0.dist-info/WHEEL +4 -0
  99. vercel_cli-41.1.0.dist-info/entry_points.txt +3 -0
@@ -0,0 +1,40 @@
1
+ {
2
+ "bin": {
3
+ "vc": "./dist/vc.js",
4
+ "vercel": "./dist/vc.js"
5
+ },
6
+ "dependencies": {
7
+ "@vercel/build-utils": "9.3.0",
8
+ "@vercel/python": "4.7.1"
9
+ },
10
+ "description": "The command-line interface for Vercel",
11
+ "engines": {
12
+ "node": ">= 18"
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "homepage": "https://vercel.com",
18
+ "license": "Apache-2.0",
19
+ "name": "vercel",
20
+ "preferGlobal": true,
21
+ "repository": {
22
+ "directory": "packages/cli",
23
+ "type": "git",
24
+ "url": "https://github.com/vercel/vercel.git"
25
+ },
26
+ "scripts": {
27
+ "build": "node scripts/build.mjs",
28
+ "coverage": "codecov",
29
+ "dev": "echo \"'pnpm dev [command]' has been removed. Use 'pnpm vercel [command]' instead.\" && exit 1",
30
+ "test": "jest --reporters=default --reporters=jest-junit --env node --verbose --bail",
31
+ "test-dev": "pnpm test test/dev/",
32
+ "test-e2e": "rimraf test/fixtures/integration && pnpm test test/integration-1.test.ts test/integration-2.test.ts test/integration-3.test.ts",
33
+ "type-check": "tsc --noEmit",
34
+ "vc": "pnpm vercel",
35
+ "vercel": "ts-node ./src/index.ts",
36
+ "vitest-run": "vitest --config ./vitest.config.mts",
37
+ "vitest-unit": "jest test/unit/ --listTests"
38
+ },
39
+ "version": "41.1.0"
40
+ }
@@ -0,0 +1,188 @@
1
+ Metadata-Version: 2.4
2
+ Name: vercel-cli
3
+ Version: 41.1.0
4
+ Summary: Vercel CLI packaged for Python (bundled Node.js, vendored npm)
5
+ Requires-Python: >=3.8
6
+ Requires-Dist: nodejs-wheel-binaries==22.16.0
7
+ Description-Content-Type: text/markdown
8
+
9
+ # Python package wrapper for Vercel CLI
10
+
11
+ [![CI](https://github.com/nuage-studio/vercel-cli-python/actions/workflows/test.yml/badge.svg)](https://github.com/nuage-studio/vercel-cli-python/actions/workflows/test.yml)
12
+ [![codecov](https://codecov.io/gh/nuage-studio/vercel-cli-python/graph/badge.svg)](https://codecov.io/gh/nuage-studio/vercel-cli-python)
13
+ [![Supported Python Versions](https://img.shields.io/badge/python-3.8--3.13-blue.svg)](https://www.python.org/)
14
+
15
+ **vercel-cli** packages the npm `vercel` CLI for Python environments. It vendors the npm package under `vercel_cli/vendor/` and uses the bundled Node.js runtime provided by `nodejs-wheel-binaries`, so you can run `vercel` without installing Node.js.
16
+
17
+ It provides both a command-line interface and a Python API that other libraries can use programmatically instead of resorting to subprocess calls.
18
+
19
+ ## Quick start
20
+
21
+ - **Install**:
22
+
23
+ ```bash
24
+ pip install vercel-cli
25
+ ```
26
+
27
+ - **Use** (same arguments and behavior as the official npm CLI):
28
+
29
+ ```bash
30
+ vercel --version
31
+ vercel login
32
+ vercel deploy
33
+ ```
34
+
35
+ - **Use programmatically in Python** (for libraries that depend on this package):
36
+
37
+ ```python
38
+ from vercel_cli import run_vercel
39
+
40
+ # Deploy current directory
41
+ exit_code = run_vercel(["deploy"])
42
+
43
+ # Deploy specific directory with custom environment
44
+ exit_code = run_vercel(
45
+ ["deploy", "--prod"],
46
+ cwd="/path/to/project",
47
+ env={"VERCEL_TOKEN": "my-token"}
48
+ )
49
+
50
+ # Check version
51
+ exit_code = run_vercel(["--version"])
52
+ ```
53
+
54
+ ## What this provides
55
+
56
+ - **No system Node.js required**: The CLI runs via the Node binary from `nodejs-wheel-binaries` (currently Node 22.x).
57
+ - **Vendored npm package**: The `vercel` npm package (production deps only) is checked into `vercel_cli/vendor/`.
58
+ - **Console entrypoint**: The `vercel` command maps to `vercel_cli.run:main`, which executes `vercel_cli/vendor/dist/vc.js` with the bundled Node runtime.
59
+ - **Python API**: The `run_vercel()` function allows other Python libraries to use Vercel CLI programmatically without subprocess calls, with secure environment variable handling.
60
+
61
+ ## Requirements
62
+
63
+ - Python 3.8+
64
+ - macOS, Linux, or Windows supported by the Node wheels
65
+
66
+ ## How it works
67
+
68
+ At runtime, `vercel_cli.run` locates `vercel_cli/vendor/dist/vc.js` and launches it via the Node executable exposed by `nodejs_wheel_binaries`. CLI arguments are passed through unchanged, while environment variables are handled securely.
69
+
70
+ ## Programmatic usage
71
+
72
+ When using this package as a dependency in other Python libraries, you can call Vercel CLI commands directly without using subprocess:
73
+
74
+ ```python
75
+ from vercel_cli import run_vercel
76
+ import tempfile
77
+ import os
78
+
79
+ def deploy_my_app(source_dir: str, token: str) -> bool:
80
+ """Deploy an application to Vercel programmatically."""
81
+ with tempfile.TemporaryDirectory() as temp_dir:
82
+ # Copy your app to temp directory and modify as needed
83
+ # ...
84
+
85
+ # Deploy with custom environment
86
+ env = {
87
+ "VERCEL_TOKEN": token,
88
+ "NODE_ENV": "production"
89
+ }
90
+
91
+ exit_code = run_vercel(
92
+ ["deploy", "--prod", "--yes"],
93
+ cwd=temp_dir,
94
+ env=env
95
+ )
96
+
97
+ return exit_code == 0
98
+
99
+ # Usage
100
+ success = deploy_my_app("./my-app", "my-vercel-token")
101
+ ```
102
+
103
+ The `run_vercel()` function accepts:
104
+
105
+ - `args`: List of CLI arguments (same as command line)
106
+ - `cwd`: Working directory for the command
107
+ - `env`: Environment variables to set (passed directly to the Node.js runtime)
108
+
109
+ ## Security considerations
110
+
111
+ When using the `env` parameter, only explicitly provided environment variables are passed to the Vercel CLI. This prevents accidental leakage of sensitive environment variables from your Python process while still allowing you to set necessary variables like `VERCEL_TOKEN`.
112
+
113
+ Example with secure token handling:
114
+
115
+ ```python
116
+ from vercel_cli import run_vercel
117
+
118
+ # Secure: only VERCEL_TOKEN is passed to the CLI
119
+ exit_code = run_vercel(
120
+ ["deploy", "--prod"],
121
+ env={"VERCEL_TOKEN": "your-secure-token"}
122
+ )
123
+ ```
124
+
125
+ This approach avoids common security pitfalls of subprocess environment variable handling.
126
+
127
+ ## Updating the vendored Vercel CLI (maintainers)
128
+
129
+ There are two ways to update the vendored npm package under `vercel_cli/vendor/`:
130
+
131
+ 1) Manual update to a specific version
132
+
133
+ ```bash
134
+ # Using the console script defined in pyproject.toml
135
+ uv run update-vendor 46.0.2
136
+ # or equivalently
137
+ uv run python scripts/update_vendor.py 46.0.2
138
+ ```
139
+
140
+ This will:
141
+
142
+ - fetch `vercel@46.0.2` from npm,
143
+ - verify integrity/shasum,
144
+ - install production dependencies with `npm install --omit=dev`, and
145
+ - copy the result into `vercel_cli/vendor/`.
146
+
147
+ 1) Automatic check-and-release (GitHub Actions)
148
+
149
+ The workflow `.github/workflows/release.yml` checks npm `latest` and, if newer than the vendored version, will:
150
+
151
+ - vendor the new version using `scripts/check_and_update.py`,
152
+ - commit the changes and create a tag `v<version>`,
153
+ - build distributions, and
154
+ - publish to PyPI (requires `PYPI_API_TOKEN`).
155
+
156
+ ## Versioning
157
+
158
+ The Python package version is derived dynamically from the vendored `package.json` via Hatch’s version source:
159
+
160
+ ```toml
161
+ [tool.hatch.version]
162
+ path = "vercel_cli/vendor/package.json"
163
+ pattern = '"version"\s*:\s*"(?P<version>[^\\"]+)"'
164
+ ```
165
+
166
+ ## Development
167
+
168
+ - Build backend: `hatchling`
169
+ - Dependency management: `uv` (see `uv.lock`)
170
+ - Tests: `pytest` with coverage in `tests/`
171
+ - Lint/format: `ruff`; type-check: `basedpyright`
172
+
173
+ Common commands (using `uv`):
174
+
175
+ ```bash
176
+ # Run tests with coverage
177
+ uv run pytest --cov=vercel_cli --cov-report=term-missing
178
+
179
+ # Lint and format
180
+ uv run ruff check .
181
+ uv run ruff format .
182
+
183
+ # Type-check
184
+ uv run basedpyright
185
+
186
+ # Build wheel and sdist
187
+ uv run --with build python -m build
188
+ ```
@@ -0,0 +1,99 @@
1
+ vercel_cli/vendor/LICENSE,sha256=sHDXe_ssUqHdaZbeDOX2TEmgylXIibFjqWPd9csAHuI,11343
2
+ vercel_cli/vendor/README.md,sha256=kYBfdhKHmDLv4siMLGY7e-gdHWcz24MvgIkcIWJN1uI,1795
3
+ vercel_cli/vendor/package.json,sha256=c22eJkLxASMT17epmsB9MelfbOm9tT5zNWjvk_geMQo,1223
4
+ vercel_cli/vendor/dist/VERCEL_DIR_README.txt,sha256=9dHtD1AyrhKJMfRkWbX6oa9jGfwt-z56X-VKhL-T29Y,520
5
+ vercel_cli/vendor/dist/builder-worker.js,sha256=RgutTXJcurRisV2NtlruuPDtCBOi8eHSGCo3n4GcCIM,1969
6
+ vercel_cli/vendor/dist/get-latest-worker.js,sha256=w7nK8nQtlYad_SKuFQGw_sg7_bb-p0uHOf1MYiwrUNs,7964
7
+ vercel_cli/vendor/dist/index.js,sha256=P72SWQvo4vSZT7Zk6ozMKAqJn4CLAVXFs0juYUbhjzU,8410713
8
+ vercel_cli/vendor/dist/vc.js,sha256=AAC4u6uwjpO0KfFVuLRs5YWXjW4aMCkgSj_45hR3W8k,340
9
+ vercel_cli/vendor/node_modules/.package-lock.json,sha256=Dm5cjftx7SHfI5tNTrFo_RqKIzHq5HYf5MnJZk0Dpm0,682
10
+ vercel_cli/vendor/node_modules/@vercel/build-utils/CHANGELOG.md,sha256=-wa2jNouV42HK6Nb_WKc3vPKHgygL5mfPxQuv0BIB8w,12818
11
+ vercel_cli/vendor/node_modules/@vercel/build-utils/LICENSE,sha256=sHDXe_ssUqHdaZbeDOX2TEmgylXIibFjqWPd9csAHuI,11343
12
+ vercel_cli/vendor/node_modules/@vercel/build-utils/build.mjs,sha256=UCAJgPaur_bxtLTnQxSkBwoq246SSCBvI-0w_PvbAVU,132
13
+ vercel_cli/vendor/node_modules/@vercel/build-utils/file-blob.js,sha256=aRpphtlekNrjt2il5QT0F2bXAkqFTO_V1krxIOq4hrI,51
14
+ vercel_cli/vendor/node_modules/@vercel/build-utils/file-fs-ref.js,sha256=fOL25R1bIwSeLf_imxHGMUUhjRLF_BE1_Zu7id4zQHQ,52
15
+ vercel_cli/vendor/node_modules/@vercel/build-utils/file-ref.js,sha256=Zagnve_F2XviRbTHabnkueLyODg4bS0YrNSqd3nfIl8,50
16
+ vercel_cli/vendor/node_modules/@vercel/build-utils/lambda.js,sha256=KAiW9B7zt1YNj6DpnUErjD8pZJUq7MP1xCTG8oFzCKU,42
17
+ vercel_cli/vendor/node_modules/@vercel/build-utils/package.json,sha256=uT1_gEp6gzE9sSODH_Oh8sSIEdYnBXDZwKpl3ic8Olo,1809
18
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/clone-env.d.ts,sha256=j_d2xvRDDMBB4yXz53kyZ-plZRvg0Rg1d9-lFFvjVRo,415
19
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/clone-env.js,sha256=LzFB8CsnB1G7wZ2pl5D25siWq0kuY2eTvRlZMj6tbg0,1423
20
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/debug.d.ts,sha256=zh9K0T0QHcac03_UpCv9r4q3w8aia11XqtWd7Jsfhos,76
21
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/debug.js,sha256=E_SysSQCZ3Nw8rZNllm87INTC3T8uFMnYKmSzSTCHho,1269
22
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/default-cache-path-glob.d.ts,sha256=ZxJsVD-LYUpRQT2x2W7i0rTH70hC2HZ8Ks6nGRAeyWc,80
23
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/default-cache-path-glob.js,sha256=8sqt8F_KTJ5mNqhYGV58C816057TPeJeUAJGJy9DV8g,1183
24
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/edge-function.d.ts,sha256=JaRjS9SDwMplWqf4MeKxCL1FEAke4dvZ7xJqxNghny0,1142
25
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/edge-function.js,sha256=o9LNzuKx1CnhVxVDOfLS-61C9PE8n1Isp-A8_-6ccgg,1451
26
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/errors.d.ts,sha256=dSutusxWCjMmXY_GfcvrTfn1g1tImVYahDvioa5uiz8,1075
27
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/errors.js,sha256=P5RWY_wj4JGRst6RH7V4Zxt5eQo9vMPEW_3NikxXg6c,3443
28
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-blob.d.ts,sha256=tKLv7VajVcuiae-soRnOqfwkIqz8xF2w_l6_IdWMb8w,698
29
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-blob.js,sha256=DGeOBq3utEyyMvM099Okohzl7TIRin0kO2tj0WaGvok,2639
30
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-fs-ref.d.ts,sha256=OMK2hhEGOlIhQU4Ow_zOckbFeRMgDIsH7RWAswNkxoc,870
31
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-fs-ref.js,sha256=AXyXrTwRJTeqLOBhWGKm_KMkAiMxjOJpQlrW4lFotiU,3910
32
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-ref.d.ts,sha256=TavWfLrgq6soixSDYhdsvt8MtzIB_qLJPcbo02pm_Ts,1098
33
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-ref.js,sha256=7rTV64WuFTvLurFsNE8JWCC4Y7EFFgiqwtCAe9Co3CU,4929
34
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-ignore-filter.d.ts,sha256=Rr_2-k8x2nv7naAZFeV-vDiMjOiyQRn3ldqdSeh3jaE,113
35
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-ignore-filter.js,sha256=uIdQ39MfWu0kW2jg6gZ-P912KxC7ztTaCbkDMVw-v3A,3328
36
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-installed-package-version.d.ts,sha256=RgC8V4BC4wAsIjWmLyPvosiKlCysAg9jWlZljXzyrQM,128
37
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-installed-package-version.js,sha256=9IuqyFU_TcGR0CKpNMADblnGvVacZlt4SBFOn1rePe4,2259
38
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-platform-env.d.ts,sha256=r_HuTGwBewIOI8HfK99xGxIoOWH3aBB41xTZVqtlxF4,207
39
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-platform-env.js,sha256=mnLoediIPIUjCEMhdwuNJzzvAx1zx673_x3dJ4CVvZA,1667
40
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-prefixed-env-vars.d.ts,sha256=6Qquy3C4QCICvUJiXLdcRUtyxCXQfY52SPg3vRdgliA,507
41
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-prefixed-env-vars.js,sha256=0vNpNUV7RqDBFQSwwuOP5_R5taQztC2XzZd9wxXe47g,1749
42
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/hard-link-dir.d.ts,sha256=HplXUbwTLeD9eY-mSorms1O1mucLWBH-edAPIvAiYSM,85
43
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/hard-link-dir.js,sha256=K4utFK-gzVTfepi8P488t4cFBHBA8virdMyFumvu8E8,3685
44
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.d.ts,sha256=tIQglSVzYMR645Bo2Hy2tRjz_F2699Zu3kHVyPA77YE,2842
45
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.js,sha256=-mg552pLPi16wndnwHkf2R5wIKAc6CQUOWS5wCVC6tc,1122673
46
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/lambda.d.ts,sha256=8fjC3xX6IXtXJOTy8drYeyQe8npMrQx4k0aIu7d-LBo,2723
47
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/lambda.js,sha256=K1Vah_ThqYdSH6WaRHW1Oh3q0TymKbBdldBh11YeN8Y,8413
48
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/nodejs-lambda.d.ts,sha256=LwC890Vt5ilvPpMhqRt8X0eOycQHa_vAsCeBf3KoKik,595
49
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/nodejs-lambda.js,sha256=81h0Q9o6JKdwVP3bosQu7Fby88JJxFIHWF24niEeht0,1525
50
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/os.d.ts,sha256=zyK_I6qj1qqOXOj77UflOoN0YWVrpmvs0ZggH0k2NT4,258
51
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/os.js,sha256=d_haNkb21SJ5YA367LiE0t-Lud2CqLH2QvGQt2s4hmY,2032
52
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/prerender.d.ts,sha256=BuDJggynslGuDUpsqPQvpmZ9KreWIhmNy2NrVKIBIBg,1248
53
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/prerender.js,sha256=wUrhMvXHLUvlktcPX33ZKO-_E0YLjD3VHquWed9eorM,5939
54
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/schemas.d.ts,sha256=-HjxI8-g47H7XRe9TvAlnQaXPs3Oe2NDt5CVHLv2iGk,1550
55
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/schemas.js,sha256=xe8tooUPO8yTz96S-j-TSYfViVdSWyOIxjltVADluqg,2204
56
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/should-serve.d.ts,sha256=rYxmRjKfduI6QBQe8jOcOW97NkVvIsjbYmXj5Em5Hcg,91
57
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/should-serve.js,sha256=1M_tNAXPzxG6HnzqHtiIEy3oy65NMSBAKVQQ5215XJU,1599
58
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/types.d.ts,sha256=Tant807Kcr-xTFj7M0mANaFeMi_k7_Vps1uxYrXik3M,14628
59
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/types.js,sha256=TvYaM5sNbX2hfy_eUrIz4JWgIpMPrTi_jcqHZDvP-kg,1678
60
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/validate-npmrc.d.ts,sha256=YxDG9YaXL8YMWe-UBrtmVS_aKzZsDlSc6AxWN_OeMB8,527
61
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/validate-npmrc.js,sha256=ZZSYts47i3Gu4FReelJVy_jNbeV-tx2Ii2AWJvwrPBI,1593
62
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/download.d.ts,sha256=cCEqH4vEnCnTZ0SZ_XjY52uMXAZ1vCAGlYNXVMrwrGM,472
63
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/download.js,sha256=j-9hyO9ZW58It0wGjyc-mK-cCAiGRzGSaD8gmoxtlbw,5096
64
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/get-writable-directory.d.ts,sha256=A3WQ8AjhC1wbLoyi_gLdUoXB689kxtBZAQGse2ChaOw,65
65
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/get-writable-directory.js,sha256=YMcrgL69VnilYYsxocXiqVUU_Qh2k217eDwBv1qh-uk,1349
66
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/glob.d.ts,sha256=wEBK0FOg-tOiWcp-QZLtA2r5bRbibV-Ic75A5qg2bFk,364
67
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/glob.js,sha256=SRM_-ufdBHgeqJaW_nBwujRjmfjLsxbHFho5k5tO1bY,4519
68
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/node-version.d.ts,sha256=jUqnjChQDUissjrl8ISyyba6qo0odpuwGFOu8HxDeFQ,630
69
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/node-version.js,sha256=aZsJ9Gk2F0MdmuRUGBFYVpkbJLX78Ymnb9GRESfwTiE,6094
70
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/normalize-path.d.ts,sha256=pMZyTNN1scwUc7cBCWEk8-lwxI5KIjazfNLqkInqVrg,116
71
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/normalize-path.js,sha256=mdFXSxNkmBBpEs5szUMVt7yVFcnTANXt84_BnyNqpBI,1188
72
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/read-config-file.d.ts,sha256=KO7AYZGrouVIOwaCYyOoqyVd6e7UFrZa9yWqsoHqU4Y,88
73
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/read-config-file.js,sha256=Ccakw-Y8sFtHjQmAIU3GdbIdyXg9I0sRW9EU02KEMOw,2866
74
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/rename.d.ts,sha256=v6WioV6U1QxczX6tOCZbSjXjeCN2ouyK2bujhvvPJTI,378
75
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/rename.js,sha256=55SeRvSvb6gVVlLRNlFA0WaMVHikvBdMI9YRUxDn2yU,1094
76
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/run-user-scripts.d.ts,sha256=TycPVkcPR9pdKnhFJE7mtnxDPBlZR05bV0e2gb0k7VA,8524
77
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/run-user-scripts.js,sha256=Nnv-tsWxNxkPrYAd566JOOfXXYJIoL8m8sSF9QU8-Kw,33133
78
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/stream-to-buffer.d.ts,sha256=ARoCtv0o8IIUW0myrosVJhv6d_odcaJUisA2LDHZSKM,235
79
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/fs/stream-to-buffer.js,sha256=R4Z_RpbNJKFvoVX5AvyWzoVoJqrQaSz4CZSSFJV6vVQ,3158
80
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/trace/constants.d.ts,sha256=Z0MsKjgTcB8igokDmq1MxRJpCIGCEUgFXQId2yGiahM,132
81
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/trace/constants.js,sha256=f9Na7Jnoz0Hj5IUOb3zt--AlcITUxZnmnBMyxzW8vKM,1260
82
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/trace/index.d.ts,sha256=SaKVw0vlduNq9PHA9lk9mRTQEhmQHdA6hqzS69Ryrzs,169
83
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/trace/index.js,sha256=KUbl5Kqat6oyksNlZ8OeNZl0HAmovCMenQXVddqr6jw,1307
84
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/trace/trace.d.ts,sha256=LDUaiTxaFxEXSC-uyq3cjVhYrQNc4iOVKwpzSU7Jp2Q,893
85
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/trace/trace.js,sha256=BYtMDKibqog5aaFuyKOdovuf0YdEmxqzXeQwvC3QH0M,2580
86
+ vercel_cli/vendor/node_modules/@vercel/build-utils/fs/download.js,sha256=oZ2rT0IkVSlb-c1qpODMGZHRB0p4zTTIzzuhNrgu2Ao,52
87
+ vercel_cli/vendor/node_modules/@vercel/build-utils/fs/get-writable-directory.js,sha256=NE5NJlp47ctTRRynRf6zReD9JU52Z03qNoX_sCRnJMw,65
88
+ vercel_cli/vendor/node_modules/@vercel/build-utils/fs/glob.js,sha256=6BDU1Yu2e9tOeKJ_-fn04KmXmhBt5dS1wR-zf4O6kdU,48
89
+ vercel_cli/vendor/node_modules/@vercel/build-utils/fs/rename.js,sha256=tDfT7mkZu9EqBJx3r5o6N6irGvkjMFMLE9dPow8W5f4,50
90
+ vercel_cli/vendor/node_modules/@vercel/build-utils/fs/run-user-scripts.js,sha256=wZPDCPVjfxX_CrnJDJ0mJYrItsHNlkzBqMdnEPujLmc,43
91
+ vercel_cli/vendor/node_modules/@vercel/build-utils/fs/stream-to-buffer.js,sha256=Q4ZkMugOkxvIkIbq6YlMXBbkuHj2BBjNJvRtsXeGwww,58
92
+ vercel_cli/vendor/node_modules/@vercel/python/LICENSE,sha256=sHDXe_ssUqHdaZbeDOX2TEmgylXIibFjqWPd9csAHuI,11343
93
+ vercel_cli/vendor/node_modules/@vercel/python/package.json,sha256=q7oLut_NiAzIy17q-qSBCpthd7Zugi9UbiSdp4u34jo,1043
94
+ vercel_cli/vendor/node_modules/@vercel/python/vc_init.py,sha256=xCsUK3On0BsUHbkBtGJqDH_qasAGJPKDzAa2ZlNYk2A,27468
95
+ vercel_cli/vendor/node_modules/@vercel/python/dist/index.js,sha256=Ha5qnJF3T3k0JrGFWGbReYzr4XVBETKn_oPGStwOeXo,103160
96
+ vercel_cli-41.1.0.dist-info/METADATA,sha256=RPJGf9RYBBl88vt5mZximAgyI8h1aSOBMcromvAzVBU,5933
97
+ vercel_cli-41.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
98
+ vercel_cli-41.1.0.dist-info/entry_points.txt,sha256=3iHkg20gi2BZorK1g5UlyZY3tN5E1vJX6PX5-ibn9fI,83
99
+ vercel_cli-41.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ vendor = vercel_cli.vendor_cli:main
3
+ vercel = vercel_cli.run:main