@mmmbuto/qwen-code-termux 0.10.3-termux → 0.11.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.
- package/README.md +12 -4
- package/dist/cli.js +6170 -4470
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmmbuto/qwen-code-termux",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0-termux",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.0.0"
|
|
6
6
|
},
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"url": "git+https://github.com/DioNanos/qwen-code-termux.git"
|
|
14
14
|
},
|
|
15
15
|
"config": {
|
|
16
|
-
"sandboxImageUri": "ghcr.io/mmmbuto/qwen-code-termux:0.
|
|
16
|
+
"sandboxImageUri": "ghcr.io/mmmbuto/qwen-code-termux:0.11.0-termux"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
19
|
"start": "cross-env node scripts/start.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"test:integration:all": "npm run test:integration:sandbox:none && npm run test:integration:sandbox:docker && npm run test:integration:sandbox:podman",
|
|
35
35
|
"test:integration:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests",
|
|
36
36
|
"test:integration:sandbox:docker": "cross-env GEMINI_SANDBOX=docker npm run build:sandbox && GEMINI_SANDBOX=docker vitest run --root ./integration-tests",
|
|
37
|
-
"test:integration:sandbox:podman": "cross-env GEMINI_SANDBOX=podman vitest run --root ./integration-tests",
|
|
37
|
+
"test:integration:sandbox:podman": "cross-env GEMINI_SANDBOX=podman npm run build:sandbox && GEMINI_SANDBOX=podman vitest run --root ./integration-tests",
|
|
38
38
|
"test:integration:sdk:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests sdk-typescript",
|
|
39
39
|
"test:integration:sdk:sandbox:docker": "cross-env GEMINI_SANDBOX=docker npm run build:sandbox && GEMINI_SANDBOX=docker vitest run --root ./integration-tests sdk-typescript",
|
|
40
40
|
"test:integration:cli:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests --exclude '**/sdk-typescript/**'",
|
|
@@ -119,9 +119,11 @@
|
|
|
119
119
|
"@lydell/node-pty": "1.1.0",
|
|
120
120
|
"@lydell/node-pty-darwin-arm64": "1.1.0",
|
|
121
121
|
"@lydell/node-pty-darwin-x64": "1.1.0",
|
|
122
|
+
"@lydell/node-pty-linux-arm64": "1.1.0",
|
|
122
123
|
"@lydell/node-pty-linux-x64": "1.1.0",
|
|
123
124
|
"@lydell/node-pty-win32-arm64": "1.1.0",
|
|
124
|
-
"@lydell/node-pty-win32-x64": "1.1.0"
|
|
125
|
+
"@lydell/node-pty-win32-x64": "1.1.0",
|
|
126
|
+
"node-pty-android-arm64": "1.1.0"
|
|
125
127
|
},
|
|
126
128
|
"lint-staged": {
|
|
127
129
|
"*.{js,jsx,ts,tsx}": [
|
|
@@ -132,4 +134,4 @@
|
|
|
132
134
|
"prettier --write"
|
|
133
135
|
]
|
|
134
136
|
}
|
|
135
|
-
}
|
|
137
|
+
}
|