@mmmbuto/qwen-code-termux 0.11.2-termux → 0.12.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/package.json CHANGED
@@ -1,131 +1,41 @@
1
1
  {
2
2
  "name": "@mmmbuto/qwen-code-termux",
3
- "version": "0.11.2-termux",
4
- "engines": {
5
- "node": ">=20.0.0"
6
- },
7
- "type": "module",
8
- "workspaces": [
9
- "packages/*"
10
- ],
3
+ "version": "0.12.0-termux",
4
+ "description": "Qwen Code - AI-powered coding assistant",
11
5
  "repository": {
12
6
  "type": "git",
13
7
  "url": "git+https://github.com/DioNanos/qwen-code-termux.git"
14
8
  },
15
- "config": {
16
- "sandboxImageUri": "ghcr.io/mmmbuto/qwen-code-termux:0.11.2-termux"
17
- },
18
- "scripts": {
19
- "start": "cross-env node scripts/start.js",
20
- "dev": "node scripts/dev.js",
21
- "debug": "cross-env DEBUG=1 node --inspect-brk scripts/start.js",
22
- "generate": "node scripts/generate-git-commit-info.js",
23
- "build": "node scripts/build.js",
24
- "build-and-start": "npm run build && npm run start",
25
- "build:vscode": "node scripts/build_vscode_companion.js",
26
- "build:all": "npm run build && npm run build:sandbox && npm run build:vscode",
27
- "build:packages": "npm run build --workspaces",
28
- "build:sandbox": "node scripts/build_sandbox.js",
29
- "bundle": "npm run generate && node esbuild.config.js && node scripts/copy_bundle_assets.js",
30
- "test": "npm run test --workspaces --if-present --parallel",
31
- "test:ci": "npm run test:ci --workspaces --if-present --parallel && npm run test:scripts",
32
- "test:scripts": "vitest run --config ./scripts/tests/vitest.config.ts",
33
- "test:e2e": "cross-env VERBOSE=true KEEP_OUTPUT=true npm run test:integration:sandbox:none",
34
- "test:integration:all": "npm run test:integration:sandbox:none && npm run test:integration:sandbox:docker && npm run test:integration:sandbox:podman",
35
- "test:integration:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests",
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 npm run build:sandbox && GEMINI_SANDBOX=podman vitest run --root ./integration-tests",
38
- "test:integration:sdk:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests sdk-typescript",
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
- "test:integration:cli:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests --exclude '**/sdk-typescript/**'",
41
- "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/**'",
42
- "test:terminal-bench": "cross-env VERBOSE=true KEEP_OUTPUT=true vitest run --config ./vitest.terminal-bench.config.ts --root ./integration-tests",
43
- "test:terminal-bench:oracle": "cross-env VERBOSE=true KEEP_OUTPUT=true vitest run --config ./vitest.terminal-bench.config.ts --root ./integration-tests -t 'oracle'",
44
- "test:terminal-bench:qwen": "cross-env VERBOSE=true KEEP_OUTPUT=true vitest run --config ./vitest.terminal-bench.config.ts --root ./integration-tests -t 'qwen'",
45
- "lint": "eslint . --ext .ts,.tsx && eslint integration-tests",
46
- "lint:fix": "eslint . --fix && eslint integration-tests --fix",
47
- "lint:ci": "eslint . --ext .ts,.tsx --max-warnings 0 && eslint integration-tests --max-warnings 0",
48
- "lint:all": "node scripts/lint.js",
49
- "format": "prettier --experimental-cli --write .",
50
- "typecheck": "npm run typecheck --workspaces --if-present",
51
- "check-i18n": "npm run check-i18n --workspace=packages/cli",
52
- "preflight": "npm run clean && npm ci && npm run format && npm run lint:ci && npm run build && npm run typecheck && npm run test:ci",
53
- "prepare": "node scripts/prepare-termux.cjs",
54
- "prepare:package": "node scripts/prepare-package.js",
55
- "release:version": "node scripts/version.js",
56
- "telemetry": "node scripts/telemetry.js",
57
- "check:lockfile": "node scripts/check-lockfile.js",
58
- "clean": "node scripts/clean.js",
59
- "pre-commit": "node scripts/pre-commit.js"
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
- "baseline-browser-mapping": "^2.9.19"
68
- },
9
+ "type": "module",
10
+ "main": "cli.js",
69
11
  "bin": {
70
- "qwen": "dist/cli.js"
12
+ "qwen": "cli.js"
71
13
  },
72
14
  "files": [
73
- "dist/",
15
+ "cli.js",
16
+ "vendor",
17
+ "*.sb",
74
18
  "README.md",
75
- "LICENSE"
19
+ "LICENSE",
20
+ "CHANGELOG.md",
21
+ "locales"
76
22
  ],
77
- "devDependencies": {
78
- "@types/marked": "^5.0.2",
79
- "@types/mime-types": "^3.0.1",
80
- "@types/minimatch": "^5.1.2",
81
- "@types/mock-fs": "^4.13.4",
82
- "@types/qrcode-terminal": "^0.12.2",
83
- "@types/shell-quote": "^1.7.5",
84
- "@types/uuid": "^10.0.0",
85
- "@vitest/coverage-v8": "^3.1.1",
86
- "@vitest/eslint-plugin": "^1.3.4",
87
- "cross-env": "^7.0.3",
88
- "esbuild": "^0.25.0",
89
- "eslint": "^9.24.0",
90
- "eslint-config-prettier": "^10.1.2",
91
- "eslint-plugin-import": "^2.31.0",
92
- "eslint-plugin-license-header": "^0.8.0",
93
- "eslint-plugin-react": "^7.37.5",
94
- "eslint-plugin-react-hooks": "^5.2.0",
95
- "glob": "^10.5.0",
96
- "globals": "^16.0.0",
97
- "husky": "^9.1.7",
98
- "json": "^11.0.0",
99
- "lint-staged": "^16.1.6",
100
- "memfs": "^4.42.0",
101
- "mnemonist": "^0.40.3",
102
- "mock-fs": "^5.5.0",
103
- "msw": "^2.10.4",
104
- "npm-run-all": "^4.1.5",
105
- "prettier": "^3.5.3",
106
- "react-devtools-core": "^4.28.5",
107
- "semver": "^7.7.2",
108
- "strip-ansi": "^7.1.2",
109
- "tsx": "^4.20.3",
110
- "typescript-eslint": "^8.30.1",
111
- "vitest": "^3.2.4",
112
- "yargs": "^17.7.2"
113
- },
114
- "dependencies": {
115
- "@testing-library/dom": "^10.4.1",
116
- "simple-git": "^3.28.0"
23
+ "config": {
24
+ "sandboxImageUri": "ghcr.io/mmmbuto/qwen-code-termux:0.12.0-termux"
117
25
  },
26
+ "dependencies": {},
118
27
  "optionalDependencies": {
119
28
  "@mmmbuto/node-pty-android-arm64": "~1.1.0",
120
- "@lydell/node-pty-linux-arm64": "~1.2.0-beta.2"
29
+ "@lydell/node-pty-linux-arm64": "~1.2.0-beta.2",
30
+ "@teddyzhu/clipboard": "0.0.5",
31
+ "@teddyzhu/clipboard-darwin-arm64": "0.0.5",
32
+ "@teddyzhu/clipboard-darwin-x64": "0.0.5",
33
+ "@teddyzhu/clipboard-linux-x64-gnu": "0.0.5",
34
+ "@teddyzhu/clipboard-linux-arm64-gnu": "0.0.5",
35
+ "@teddyzhu/clipboard-win32-x64-msvc": "0.0.5",
36
+ "@teddyzhu/clipboard-win32-arm64-msvc": "0.0.5"
121
37
  },
122
- "lint-staged": {
123
- "*.{js,jsx,ts,tsx}": [
124
- "prettier --write",
125
- "eslint --fix --max-warnings 0"
126
- ],
127
- "*.{json,md}": [
128
- "prettier --write"
129
- ]
38
+ "engines": {
39
+ "node": ">=20.0.0"
130
40
  }
131
41
  }
@@ -29,7 +29,7 @@
29
29
  (allow network-inbound (local ip "localhost:9229"))
30
30
 
31
31
  ;; deny all outbound network traffic EXCEPT through proxy on localhost:8877
32
- ;; set `GEMINI_SANDBOX_PROXY_COMMAND=<command>` to run proxy alongside sandbox
32
+ ;; set `QWEN_SANDBOX_PROXY_COMMAND=<command>` to run proxy alongside sandbox
33
33
  ;; proxy must listen on :::8877 (see docs/examples/proxy-script.md)
34
34
  (deny network-outbound)
35
35
  (allow network-outbound (remote tcp "localhost:8877"))
@@ -93,6 +93,6 @@
93
93
  (allow network-inbound (local ip "localhost:9229"))
94
94
 
95
95
  ;; allow outbound network traffic through proxy on localhost:8877
96
- ;; set `GEMINI_SANDBOX_PROXY_COMMAND=<command>` to run proxy alongside sandbox
96
+ ;; set `QWEN_SANDBOX_PROXY_COMMAND=<command>` to run proxy alongside sandbox
97
97
  ;; proxy must listen on :::8877 (see docs/examples/proxy-script.md)
98
98
  (allow network-outbound (remote tcp "localhost:8877"))
File without changes
File without changes
File without changes
File without changes
File without changes