botmux 3.19.1 → 3.20.0
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 +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "botmux",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.20.0",
|
|
4
4
|
"description": "Bridge between IM platforms and AI coding CLIs — one topic, one CLI session with live streaming",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -15,9 +15,10 @@
|
|
|
15
15
|
"access": "public"
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|
|
18
|
-
"build": "bun run audit:domains && node scripts/generate-app-icon-data.mjs && node scripts/clean-dist.mjs && tsc && bun run typecheck:scripts && node scripts/generate-runtime-build-id.mjs && cp src/setup/lark-scopes.json dist/setup/ && bun run dashboard:bundle && chmod +x dist/cli.js && node scripts/audit-dist.mjs && node scripts/audit-embedded-assets.mjs --require-dist",
|
|
18
|
+
"build": "bun run audit:domains && node scripts/generate-app-icon-data.mjs && node scripts/clean-dist.mjs && tsc && bun run typecheck:scripts && bun run typecheck:test-mocks && node scripts/generate-runtime-build-id.mjs && cp src/setup/lark-scopes.json dist/setup/ && bun run dashboard:bundle && chmod +x dist/cli.js && node scripts/audit-dist.mjs && node scripts/audit-embedded-assets.mjs --require-dist",
|
|
19
19
|
"verify:binary": "bun scripts/verify-binary.mjs",
|
|
20
20
|
"typecheck:scripts": "tsc -p tsconfig.scripts.json",
|
|
21
|
+
"typecheck:test-mocks": "tsc -p tsconfig.test-mocks.json",
|
|
21
22
|
"workflow-core:build": "node scripts/build-workflow-core-package.mjs",
|
|
22
23
|
"workflow-core:test": "bun run workflow-core:build && node scripts/test-workflow-core-package.mjs",
|
|
23
24
|
"workflow-core:pack": "bun run workflow-core:build && node scripts/pack-workflow-core-package.mjs",
|
|
@@ -69,7 +70,6 @@
|
|
|
69
70
|
"croner": "^10.0.1",
|
|
70
71
|
"dotenv": "^17.3.1",
|
|
71
72
|
"markdown-it": "^14.1.1",
|
|
72
|
-
"pm2": "^6.0.0",
|
|
73
73
|
"proxy-agent": "^6.5.0",
|
|
74
74
|
"qrcode-terminal": "^0.12.0",
|
|
75
75
|
"react": "^19.2.7",
|
|
@@ -80,12 +80,12 @@
|
|
|
80
80
|
},
|
|
81
81
|
"optionalDependencies": {
|
|
82
82
|
"@napi-rs/canvas": "^0.1.65",
|
|
83
|
-
"botmux-darwin-arm64": "3.
|
|
84
|
-
"botmux-darwin-x64": "3.
|
|
85
|
-
"botmux-linux-arm64": "3.
|
|
86
|
-
"botmux-linux-arm64-musl": "3.
|
|
87
|
-
"botmux-linux-x64": "3.
|
|
88
|
-
"botmux-linux-x64-musl": "3.
|
|
83
|
+
"botmux-darwin-arm64": "3.20.0",
|
|
84
|
+
"botmux-darwin-x64": "3.20.0",
|
|
85
|
+
"botmux-linux-arm64": "3.20.0",
|
|
86
|
+
"botmux-linux-arm64-musl": "3.20.0",
|
|
87
|
+
"botmux-linux-x64": "3.20.0",
|
|
88
|
+
"botmux-linux-x64-musl": "3.20.0"
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
|
91
91
|
"@midscene/web": "^1.7.6",
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"engines": {
|
|
112
112
|
"node": ">=22"
|
|
113
113
|
},
|
|
114
|
-
"packageManager": "bun@1.4.
|
|
114
|
+
"packageManager": "bun@1.4.2",
|
|
115
115
|
"repository": {
|
|
116
116
|
"type": "git",
|
|
117
117
|
"url": "git+https://github.com/deepcoldy/botmux.git"
|