@mmmbuto/gemini-cli-termux 0.20.2-termux → 0.20.3-termux

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 (3) hide show
  1. package/README.md +33 -153
  2. package/bundle/gemini.js +6875 -4009
  3. package/package.json +6 -14
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mmmbuto/gemini-cli-termux",
3
- "version": "0.20.2-termux",
4
- "description": "Gemini CLI Termux Edition (compatibilità Android)",
3
+ "version": "0.20.3-termux",
4
+ "description": "Gemini CLI Termux Edition (Android-compatible fork)",
5
5
  "engines": {
6
6
  "node": ">=20.0.0"
7
7
  },
@@ -12,21 +12,12 @@
12
12
  "private": false,
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "git+https://github.com/DioNanos/gemini-cli.git"
15
+ "url": "git+https://github.com/DioNanos/gemini-cli-termux.git"
16
16
  },
17
- "keywords": [
18
- "gemini",
19
- "cli",
20
- "ai",
21
- "assistant",
22
- "termux",
23
- "android"
24
- ],
25
- "author": "Google LLC (original), DioNanos (Termux port)",
26
17
  "bugs": {
27
- "url": "https://github.com/DioNanos/gemini-cli/issues"
18
+ "url": "https://github.com/DioNanos/gemini-cli-termux/issues"
28
19
  },
29
- "homepage": "https://github.com/DioNanos/gemini-cli#readme",
20
+ "homepage": "https://github.com/DioNanos/gemini-cli-termux#readme",
30
21
  "config": {
31
22
  "sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.20.0-nightly.20251201.2fe609cb6"
32
23
  },
@@ -60,6 +51,7 @@
60
51
  "test:integration:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests",
61
52
  "test:integration:sandbox:docker": "cross-env GEMINI_SANDBOX=docker npm run build:sandbox && cross-env GEMINI_SANDBOX=docker vitest run --root ./integration-tests",
62
53
  "test:integration:sandbox:podman": "cross-env GEMINI_SANDBOX=podman vitest run --root ./integration-tests",
54
+ "test:termux": "node test-gemini/smoke.mjs",
63
55
  "lint": "eslint . --ext .ts,.tsx && eslint integration-tests && eslint scripts",
64
56
  "lint:fix": "eslint . --fix --ext .ts,.tsx && eslint integration-tests --fix && eslint scripts --fix && npm run format",
65
57
  "lint:ci": "npm run lint:all",