@mmmbuto/codex-cli-termux 0.49.0-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 +37 -0
  2. package/bin/codex +0 -0
  3. package/package.json +39 -0
package/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # @mmmbuto/codex-cli-termux
2
+
3
+ OpenAI Codex CLI pre-compiled for ARM64 Termux (Android).
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -g @mmmbuto/codex-cli-termux
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ codex --help
15
+ codex --version
16
+ ```
17
+
18
+ ## Requirements
19
+
20
+ - **Platform**: Android with Termux
21
+ - **Architecture**: ARM64
22
+ - **Node.js**: ≥ 14.0.0
23
+
24
+ ## Source
25
+
26
+ This package contains a pre-compiled binary of [OpenAI Codex](https://github.com/openai/codex) for ARM64 Termux.
27
+
28
+ - **Upstream**: [github.com/openai/codex](https://github.com/openai/codex)
29
+ - **Fork**: [github.com/DioNanos/codex-termux](https://github.com/DioNanos/codex-termux)
30
+
31
+ ## License
32
+
33
+ Apache 2.0 - See [LICENSE](https://github.com/DioNanos/codex-termux/blob/main/LICENSE)
34
+
35
+ ## Maintainer
36
+
37
+ Davide A. Guglielmi <dev@mmmbuto.com>
package/bin/codex ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "@mmmbuto/codex-cli-termux",
3
+ "version": "0.49.0-termux",
4
+ "description": "OpenAI Codex CLI compiled for ARM64 Termux (Android)",
5
+ "main": "bin/codex",
6
+ "bin": {
7
+ "codex": "./bin/codex"
8
+ },
9
+ "scripts": {
10
+ "postinstall": "echo '✅ @mmmbuto/codex-cli-termux installed successfully'"
11
+ },
12
+ "keywords": [
13
+ "codex",
14
+ "openai",
15
+ "termux",
16
+ "android",
17
+ "arm64",
18
+ "cli"
19
+ ],
20
+ "author": "Davide A. Guglielmi <dev@mmmbuto.com>",
21
+ "license": "Apache-2.0",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "https://github.com/DioNanos/codex-termux.git"
25
+ },
26
+ "bugs": {
27
+ "url": "https://github.com/DioNanos/codex-termux/issues"
28
+ },
29
+ "homepage": "https://github.com/DioNanos/codex-termux#readme",
30
+ "os": [
31
+ "linux"
32
+ ],
33
+ "cpu": [
34
+ "arm64"
35
+ ],
36
+ "engines": {
37
+ "node": ">=14.0.0"
38
+ }
39
+ }