@jaydennleemc/qwen-code-local 0.12.7 → 0.13.1

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.
@@ -22,4 +22,6 @@
22
22
  (literal "/dev/stdout")
23
23
  (literal "/dev/stderr")
24
24
  (literal "/dev/null")
25
- )
25
+ (literal "/dev/ptmx")
26
+ (regex #"^/dev/ttys[0-9]*$")
27
+ )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jaydennleemc/qwen-code-local",
3
- "version": "0.12.7",
3
+ "version": "0.13.1",
4
4
  "engines": {
5
5
  "node": ">=20.0.0"
6
6
  },
@@ -13,7 +13,7 @@
13
13
  "url": "git+https://github.com/jaydennleemc/qwen-code.git"
14
14
  },
15
15
  "config": {
16
- "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.12.7"
16
+ "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.13.0"
17
17
  },
18
18
  "scripts": {
19
19
  "start": "cross-env node scripts/start.js",
@@ -36,8 +36,8 @@
36
36
  "test:integration:sandbox:none": "cross-env QWEN_SANDBOX=false vitest run --root ./integration-tests",
37
37
  "test:integration:sandbox:docker": "cross-env QWEN_SANDBOX=docker npm run build:sandbox && QWEN_SANDBOX=docker vitest run --root ./integration-tests",
38
38
  "test:integration:sandbox:podman": "cross-env QWEN_SANDBOX=podman vitest run --root ./integration-tests",
39
- "test:integration:sdk:sandbox:none": "cross-env QWEN_SANDBOX=false vitest run --root ./integration-tests sdk-typescript",
40
- "test:integration:sdk:sandbox:docker": "cross-env QWEN_SANDBOX=docker npm run build:sandbox && QWEN_SANDBOX=docker vitest run --root ./integration-tests sdk-typescript",
39
+ "test:integration:sdk:sandbox:none": "cross-env QWEN_SANDBOX=false vitest run --root ./integration-tests --poolOptions.threads.maxThreads 2 sdk-typescript",
40
+ "test:integration:sdk:sandbox:docker": "cross-env QWEN_SANDBOX=docker npm run build:sandbox && QWEN_SANDBOX=docker vitest run --root ./integration-tests --poolOptions.threads.maxThreads 2 sdk-typescript",
41
41
  "test:integration:cli:sandbox:none": "cross-env QWEN_SANDBOX=false vitest run --root ./integration-tests --exclude '**/sdk-typescript/**'",
42
42
  "test:integration:cli:sandbox:docker": "cross-env QWEN_SANDBOX=docker npm run build:sandbox && QWEN_SANDBOX=docker vitest run --root ./integration-tests --exclude '**/sdk-typescript/**'",
43
43
  "test:terminal-bench": "cross-env VERBOSE=true KEEP_OUTPUT=true vitest run --config ./vitest.terminal-bench.config.ts --root ./integration-tests",
@@ -68,7 +68,7 @@
68
68
  "baseline-browser-mapping": "^2.9.19"
69
69
  },
70
70
  "bin": {
71
- "qwen-local": "dist/cli.js"
71
+ "qwen": "dist/cli.js"
72
72
  },
73
73
  "files": [
74
74
  "dist/",