@mk-co/neox-cli 2.0.92 → 2.0.97
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/dist/cli/main.js +749 -540
- package/dist/sdk/index.js +582 -394
- package/dist/server/main.js +916 -707
- package/dist/ui-electron/server/main.js +916 -707
- package/package.json +8 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mk-co/neox-cli",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.97",
|
|
4
4
|
"description": "Professional AI code assistant CLI powered by Node.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli/main.js",
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
"electron:rebuild": "electron-rebuild -f -w node-pty,better-sqlite3 && node scripts/fix-native-module-signatures.cjs",
|
|
27
27
|
"ui:build-electron": "npm run build && npm run electron:rebuild && tsc --project tsconfig.electron.json && node scripts/build-electron.js && cp src/ui/electron/preload.js dist/ui-electron/electron/ && node scripts/check-electron-runtime-deps.cjs",
|
|
28
28
|
"ui:dev": "lsof -ti:5180 | xargs kill -9 2>/dev/null; npm run ui:build-electron && concurrently -k -s first \"cross-env NODE_ENV=development VITE_DEV_SERVER_URL=http://127.0.0.1:5180 vite --config vite.config.ui.ts\" \"wait-on tcp:127.0.0.1:5180 && cross-env NODE_ENV=development VITE_DEV_SERVER_URL=http://127.0.0.1:5180 electron ./dist/ui-electron/electron/main.js\"",
|
|
29
|
-
"ui:build": "npm run ui:build-electron && cross-env NODE_ENV=production vite build --config vite.config.ui.ts",
|
|
29
|
+
"ui:build": "npm run ui:build-electron && cross-env NODE_ENV=production vite build --config vite.config.ui.ts && npm run ui:sync-renderer",
|
|
30
|
+
"ui:sync-renderer": "node scripts/sync-renderer-to-electron.cjs",
|
|
30
31
|
"ui:preview": "vite preview --config vite.config.ui.ts",
|
|
31
32
|
"ui:type-check": "tsc --project tsconfig.ui.json --noEmit",
|
|
32
33
|
"start": "node dist/cli/main.js",
|
|
@@ -35,7 +36,8 @@
|
|
|
35
36
|
"quality:hygiene": "tsx scripts/quality/hygiene-audit.ts",
|
|
36
37
|
"verify:electron-runtime-deps": "node scripts/check-electron-runtime-deps.cjs",
|
|
37
38
|
"prepublishOnly": "npm run clean && npm run build && npm run type-check",
|
|
38
|
-
"
|
|
39
|
+
"postinstall": "node scripts/rebuild-native.cjs",
|
|
40
|
+
"link": "npm run build && node scripts/rebuild-native.cjs && npm link",
|
|
39
41
|
"unlink": "npm unlink -g neox-cli",
|
|
40
42
|
"setup-java-debug": "bash scripts/download-java-debug.sh",
|
|
41
43
|
"demo:code-interpreter": "tsx examples/code-interpreter-demo.ts",
|
|
@@ -62,6 +64,8 @@
|
|
|
62
64
|
"@andresaya/edge-tts": "^1.8.0",
|
|
63
65
|
"@hono/node-server": "^1.19.9",
|
|
64
66
|
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
67
|
+
"@react-three/drei": "^10.7.7",
|
|
68
|
+
"@react-three/fiber": "^9.5.0",
|
|
65
69
|
"@types/js-yaml": "^4.0.9",
|
|
66
70
|
"@vscode/ripgrep": "^1.17.0",
|
|
67
71
|
"ajv": "^8.17.1",
|
|
@@ -103,6 +107,7 @@
|
|
|
103
107
|
"slice-ansi": "^7.1.2",
|
|
104
108
|
"stack-utils": "^2.0.6",
|
|
105
109
|
"string-width": "^8.1.0",
|
|
110
|
+
"three": "^0.183.2",
|
|
106
111
|
"uqr": "^0.1.2",
|
|
107
112
|
"widest-line": "^5.0.0",
|
|
108
113
|
"wrap-ansi": "^9.0.2",
|