diff options
| author | Taylor Mullen <[email protected]> | 2025-05-23 15:22:13 -0700 |
|---|---|---|
| committer | N. Taylor Mullen <[email protected]> | 2025-05-23 15:55:29 -0700 |
| commit | 4a6833ef4990801304f3c88f0dcae403f3ea4358 (patch) | |
| tree | 27482ac4dbb417dc226642d10e56e79bfdfbad61 | |
| parent | 197c5b2bdfd9e03e51ea74480c83ad212b0e8a03 (diff) | |
feat: Enable npx execution on tagged versions
- Modify root package.json to allow publishing
- Update "files" to include only essential bundled assets
This change makes it possible to use npx with tagged versions of the
gemini-cli package (e.g., npx https://github.com/google-gemini/gemini-cli@early-access).
It removes "private: true" and refines the "files" array to ensure
that only the necessary bundled assets are included when the package is
fetched by npx, optimizing download size and ensuring correct execution.
| -rw-r--r-- | package.json | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/package.json b/package.json index e084447b..61366e41 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,6 @@ { "name": "gemini-code", "version": "0.1.0", - "private": true, "type": "module", "workspaces": [ "packages/*" @@ -32,10 +31,8 @@ }, "files": [ "bundle/", - "packages/cli/dist", - "packages/cli/package.json", - "packages/server/dist", - "packages/server/package.json" + "README.md", + "LICENSE" ], "dependencies": { "sqlite3": "^5.1.7" |
