@tunnelbox/codex 0.1.1 → 0.1.4

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 (4) hide show
  1. package/README.md +108 -58
  2. package/README.zh-CN.md +138 -0
  3. package/dist/index.mjs +1478 -53
  4. package/package.json +40 -36
package/package.json CHANGED
@@ -1,36 +1,40 @@
1
- {
2
- "name": "@tunnelbox/codex",
3
- "version": "0.1.1",
4
- "description": "tunnelbox 的 Codex 适配器(B 类):手机远程驱动本机 Codex CLI(codex exec --json,会话/流式/中止/删除)",
5
- "type": "module",
6
- "main": "./dist/index.mjs",
7
- "bin": {
8
- "tunnelbox-codex": "dist/index.mjs"
9
- },
10
- "files": [
11
- "dist",
12
- "README.md"
13
- ],
14
- "publishConfig": {
15
- "access": "public"
16
- },
17
- "scripts": {
18
- "type-check": "tsc --noEmit",
19
- "build": "node scripts/build.mjs",
20
- "start": "node dist/index.mjs",
21
- "smoke": "node scripts/smoke.mjs"
22
- },
23
- "engines": {
24
- "node": ">=22.0.0"
25
- },
26
- "dependencies": {
27
- "qrcode": "^1.5.3"
28
- },
29
- "devDependencies": {
30
- "@tunnelbox/core": "0.1.0",
31
- "@types/node": "^22.0.0",
32
- "@types/qrcode": "^1.5.5",
33
- "esbuild": "^0.24.0",
34
- "typescript": "^5.4.5"
35
- }
36
- }
1
+ {
2
+ "name": "@tunnelbox/codex",
3
+ "version": "0.1.4",
4
+ "description": "tunnelbox 的 Codex 适配器(B 类):手机远程驱动本机 Codex CLI(codex exec --json,会话/流式/中止/删除)",
5
+ "type": "module",
6
+ "main": "./dist/index.mjs",
7
+ "bin": {
8
+ "tunnelbox-codex": "dist/index.mjs"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "README.zh-CN.md"
14
+ ],
15
+ "publishConfig": {
16
+ "access": "public"
17
+ },
18
+ "scripts": {
19
+ "type-check": "tsc --noEmit",
20
+ "build": "node scripts/build.mjs",
21
+ "build:dev": "node scripts/build.mjs --env development",
22
+ "build:test": "node scripts/build.mjs --env test",
23
+ "build:prod": "node scripts/build.mjs --env production",
24
+ "start": "node dist/index.mjs",
25
+ "smoke": "node scripts/smoke.mjs"
26
+ },
27
+ "engines": {
28
+ "node": ">=22.0.0"
29
+ },
30
+ "dependencies": {
31
+ "qrcode": "^1.5.3"
32
+ },
33
+ "devDependencies": {
34
+ "@tunnelbox/core": "0.1.0",
35
+ "@types/node": "^22.0.0",
36
+ "@types/qrcode": "^1.5.5",
37
+ "esbuild": "^0.24.0",
38
+ "typescript": "^5.4.5"
39
+ }
40
+ }