@mmmbuto/qwen-code-termux 0.6.0-termux → 0.6.2-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.
- package/README.md +19 -190
- package/{dist/cli.js → cli.js} +669 -55
- package/locales/en.js +1073 -0
- package/locales/ru.js +1092 -0
- package/locales/zh.js +927 -0
- package/package.json +16 -130
- package/tiktoken_bg.wasm +0 -0
- /package/{dist/sandbox-macos-permissive-closed.sb → sandbox-macos-permissive-closed.sb} +0 -0
- /package/{dist/sandbox-macos-permissive-open.sb → sandbox-macos-permissive-open.sb} +0 -0
- /package/{dist/sandbox-macos-permissive-proxied.sb → sandbox-macos-permissive-proxied.sb} +0 -0
- /package/{dist/sandbox-macos-restrictive-closed.sb → sandbox-macos-restrictive-closed.sb} +0 -0
- /package/{dist/sandbox-macos-restrictive-open.sb → sandbox-macos-restrictive-open.sb} +0 -0
- /package/{dist/sandbox-macos-restrictive-proxied.sb → sandbox-macos-restrictive-proxied.sb} +0 -0
- /package/{dist/vendor → vendor}/ripgrep/COPYING +0 -0
- /package/{dist/vendor → vendor}/ripgrep/arm64-darwin/rg +0 -0
- /package/{dist/vendor → vendor}/ripgrep/arm64-linux/rg +0 -0
- /package/{dist/vendor → vendor}/ripgrep/x64-darwin/rg +0 -0
- /package/{dist/vendor → vendor}/ripgrep/x64-linux/rg +0 -0
- /package/{dist/vendor → vendor}/ripgrep/x64-win32/rg.exe +0 -0
package/package.json
CHANGED
|
@@ -1,146 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmmbuto/qwen-code-termux",
|
|
3
|
-
"version": "0.6.
|
|
4
|
-
"
|
|
5
|
-
"node": ">=20.0.0"
|
|
6
|
-
},
|
|
7
|
-
"type": "module",
|
|
8
|
-
"workspaces": [
|
|
9
|
-
"packages/*"
|
|
10
|
-
],
|
|
3
|
+
"version": "0.6.2-termux",
|
|
4
|
+
"description": "Android/Termux optimized fork of Qwen Code CLI.",
|
|
11
5
|
"repository": {
|
|
12
6
|
"type": "git",
|
|
13
7
|
"url": "git+https://github.com/DioNanos/qwen-code-termux.git"
|
|
14
8
|
},
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
},
|
|
18
|
-
"os": [
|
|
19
|
-
"android",
|
|
20
|
-
"linux",
|
|
21
|
-
"darwin",
|
|
22
|
-
"win32"
|
|
23
|
-
],
|
|
24
|
-
"cpu": [
|
|
25
|
-
"arm64",
|
|
26
|
-
"x64",
|
|
27
|
-
"arm"
|
|
28
|
-
],
|
|
29
|
-
"scripts": {
|
|
30
|
-
"start": "cross-env node scripts/start.js",
|
|
31
|
-
"debug": "cross-env DEBUG=1 node --inspect-brk scripts/start.js",
|
|
32
|
-
"generate": "node scripts/generate-git-commit-info.js",
|
|
33
|
-
"build": "node scripts/build.js",
|
|
34
|
-
"build-and-start": "npm run build && npm run start",
|
|
35
|
-
"build:vscode": "node scripts/build_vscode_companion.js",
|
|
36
|
-
"build:all": "npm run build && npm run build:sandbox && npm run build:vscode",
|
|
37
|
-
"build:packages": "npm run build --workspaces",
|
|
38
|
-
"build:sandbox": "node scripts/build_sandbox.js",
|
|
39
|
-
"bundle": "npm run generate && node esbuild.config.js && node scripts/copy_bundle_assets.js",
|
|
40
|
-
"test": "npm run test --workspaces --if-present --parallel",
|
|
41
|
-
"test:ci": "npm run test:ci --workspaces --if-present --parallel && npm run test:scripts",
|
|
42
|
-
"test:scripts": "vitest run --config ./scripts/tests/vitest.config.ts",
|
|
43
|
-
"test:e2e": "cross-env VERBOSE=true KEEP_OUTPUT=true npm run test:integration:sandbox:none",
|
|
44
|
-
"test:integration:all": "npm run test:integration:sandbox:none && npm run test:integration:sandbox:docker && npm run test:integration:sandbox:podman",
|
|
45
|
-
"test:integration:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests",
|
|
46
|
-
"test:integration:sandbox:docker": "cross-env GEMINI_SANDBOX=docker npm run build:sandbox && GEMINI_SANDBOX=docker vitest run --root ./integration-tests",
|
|
47
|
-
"test:integration:sandbox:podman": "cross-env GEMINI_SANDBOX=podman vitest run --root ./integration-tests",
|
|
48
|
-
"test:integration:sdk:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests sdk-typescript",
|
|
49
|
-
"test:integration:sdk:sandbox:docker": "cross-env GEMINI_SANDBOX=docker npm run build:sandbox && GEMINI_SANDBOX=docker vitest run --root ./integration-tests sdk-typescript",
|
|
50
|
-
"test:integration:cli:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests --exclude '**/sdk-typescript/**'",
|
|
51
|
-
"test:integration:cli:sandbox:docker": "cross-env GEMINI_SANDBOX=docker npm run build:sandbox && GEMINI_SANDBOX=docker vitest run --root ./integration-tests --exclude '**/sdk-typescript/**'",
|
|
52
|
-
"test:terminal-bench": "cross-env VERBOSE=true KEEP_OUTPUT=true vitest run --config ./vitest.terminal-bench.config.ts --root ./integration-tests",
|
|
53
|
-
"test:terminal-bench:oracle": "cross-env VERBOSE=true KEEP_OUTPUT=true vitest run --config ./vitest.terminal-bench.config.ts --root ./integration-tests -t 'oracle'",
|
|
54
|
-
"test:terminal-bench:qwen": "cross-env VERBOSE=true KEEP_OUTPUT=true vitest run --config ./vitest.terminal-bench.config.ts --root ./integration-tests -t 'qwen'",
|
|
55
|
-
"lint": "eslint . --ext .ts,.tsx && eslint integration-tests",
|
|
56
|
-
"lint:fix": "eslint . --fix && eslint integration-tests --fix",
|
|
57
|
-
"lint:ci": "eslint . --ext .ts,.tsx --max-warnings 0 && eslint integration-tests --max-warnings 0",
|
|
58
|
-
"lint:all": "node scripts/lint.js",
|
|
59
|
-
"format": "prettier --experimental-cli --write .",
|
|
60
|
-
"typecheck": "npm run typecheck --workspaces --if-present",
|
|
61
|
-
"check-i18n": "npm run check-i18n --workspace=packages/cli",
|
|
62
|
-
"preflight": "npm run clean && npm ci && npm run format && npm run lint:ci && npm run build && npm run typecheck && npm run test:ci",
|
|
63
|
-
"postinstall": "node scripts/postinstall.cjs || true",
|
|
64
|
-
"prepare": "husky && npm run bundle",
|
|
65
|
-
"prepare:package": "node scripts/prepare-package.js",
|
|
66
|
-
"release:version": "node scripts/version.js",
|
|
67
|
-
"telemetry": "node scripts/telemetry.js",
|
|
68
|
-
"check:lockfile": "node scripts/check-lockfile.js",
|
|
69
|
-
"clean": "node scripts/clean.js",
|
|
70
|
-
"pre-commit": "node scripts/pre-commit.js"
|
|
71
|
-
},
|
|
72
|
-
"overrides": {
|
|
73
|
-
"wrap-ansi": "9.0.2",
|
|
74
|
-
"ansi-regex": "6.2.2",
|
|
75
|
-
"cliui": {
|
|
76
|
-
"wrap-ansi": "7.0.0"
|
|
77
|
-
}
|
|
78
|
-
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"main": "cli.js",
|
|
79
11
|
"bin": {
|
|
80
|
-
"qwen": "
|
|
12
|
+
"qwen": "cli.js"
|
|
81
13
|
},
|
|
82
14
|
"files": [
|
|
83
|
-
"
|
|
15
|
+
"cli.js",
|
|
16
|
+
"vendor",
|
|
17
|
+
"*.sb",
|
|
18
|
+
"tiktoken_bg.wasm",
|
|
84
19
|
"README.md",
|
|
85
|
-
"LICENSE"
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"locales"
|
|
86
22
|
],
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"@types/mime-types": "^3.0.1",
|
|
90
|
-
"@types/minimatch": "^5.1.2",
|
|
91
|
-
"@types/mock-fs": "^4.13.4",
|
|
92
|
-
"@types/qrcode-terminal": "^0.12.2",
|
|
93
|
-
"@types/shell-quote": "^1.7.5",
|
|
94
|
-
"@types/uuid": "^10.0.0",
|
|
95
|
-
"@vitest/coverage-v8": "^3.1.1",
|
|
96
|
-
"@vitest/eslint-plugin": "^1.3.4",
|
|
97
|
-
"cross-env": "^7.0.3",
|
|
98
|
-
"esbuild": "^0.25.0",
|
|
99
|
-
"eslint": "^9.24.0",
|
|
100
|
-
"eslint-config-prettier": "^10.1.2",
|
|
101
|
-
"eslint-plugin-import": "^2.31.0",
|
|
102
|
-
"eslint-plugin-license-header": "^0.8.0",
|
|
103
|
-
"eslint-plugin-react": "^7.37.5",
|
|
104
|
-
"eslint-plugin-react-hooks": "^5.2.0",
|
|
105
|
-
"glob": "^10.5.0",
|
|
106
|
-
"globals": "^16.0.0",
|
|
107
|
-
"husky": "^9.1.7",
|
|
108
|
-
"json": "^11.0.0",
|
|
109
|
-
"lint-staged": "^16.1.6",
|
|
110
|
-
"memfs": "^4.42.0",
|
|
111
|
-
"mnemonist": "^0.40.3",
|
|
112
|
-
"mock-fs": "^5.5.0",
|
|
113
|
-
"msw": "^2.10.4",
|
|
114
|
-
"npm-run-all": "^4.1.5",
|
|
115
|
-
"prettier": "^3.5.3",
|
|
116
|
-
"react-devtools-core": "^4.28.5",
|
|
117
|
-
"semver": "^7.7.2",
|
|
118
|
-
"strip-ansi": "^7.1.2",
|
|
119
|
-
"tsx": "^4.20.3",
|
|
120
|
-
"typescript-eslint": "^8.30.1",
|
|
121
|
-
"vitest": "^3.2.4",
|
|
122
|
-
"yargs": "^17.7.2"
|
|
23
|
+
"config": {
|
|
24
|
+
"sandboxImageUri": "ghcr.io/mmmbuto/qwen-code-termux:0.6.2-termux"
|
|
123
25
|
},
|
|
124
26
|
"dependencies": {
|
|
125
|
-
"
|
|
126
|
-
"simple-git": "^3.28.0"
|
|
127
|
-
},
|
|
128
|
-
"optionalDependencies": {
|
|
129
|
-
"@lydell/node-pty": "1.1.0",
|
|
130
|
-
"@lydell/node-pty-darwin-arm64": "1.1.0",
|
|
131
|
-
"@lydell/node-pty-darwin-x64": "1.1.0",
|
|
132
|
-
"@lydell/node-pty-linux-x64": "1.1.0",
|
|
133
|
-
"@lydell/node-pty-win32-arm64": "1.1.0",
|
|
134
|
-
"@lydell/node-pty-win32-x64": "1.1.0",
|
|
135
|
-
"node-pty": "^1.0.0"
|
|
27
|
+
"tiktoken": "^1.0.21"
|
|
136
28
|
},
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"prettier --write",
|
|
140
|
-
"eslint --fix --max-warnings 0"
|
|
141
|
-
],
|
|
142
|
-
"*.{json,md}": [
|
|
143
|
-
"prettier --write"
|
|
144
|
-
]
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=20.0.0"
|
|
145
31
|
}
|
|
146
32
|
}
|
package/tiktoken_bg.wasm
ADDED
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|