@mk-co/neox-cli 2.0.86 → 2.0.87
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 +1190 -1224
- package/dist/sdk/index.js +536 -542
- package/dist/server/main.js +720 -753
- package/package.json +2 -2
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.87",
|
|
4
4
|
"description": "Professional AI code assistant CLI powered by Node.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli/main.js",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"dev": "tsx src/cli/main.ts",
|
|
26
26
|
"electron:rebuild": "electron-rebuild -f -w node-pty",
|
|
27
27
|
"ui:build-electron": "tsc --project tsconfig.electron.json && node scripts/build-electron.js && cp src/ui/electron/preload.js dist/ui-electron/electron/",
|
|
28
|
-
"ui:dev": "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\"",
|
|
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
29
|
"ui:build": "npm run ui:build-electron && cross-env NODE_ENV=production vite build --config vite.config.ui.ts",
|
|
30
30
|
"ui:preview": "vite preview --config vite.config.ui.ts",
|
|
31
31
|
"ui:type-check": "tsc --project tsconfig.ui.json --noEmit",
|