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