@mk-co/neox-cli 2.0.91 → 2.0.92
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 +1356 -2549
- package/dist/prompts/gpt-agents-instructions.md +16 -35
- package/dist/sdk/index.js +1031 -688
- package/dist/server/main.js +2211 -2261
- package/dist/ui-electron/server/main.js +4115 -0
- package/package.json +6 -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.92",
|
|
4
4
|
"description": "Professional AI code assistant CLI powered by Node.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli/main.js",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"test:watch": "vitest",
|
|
24
24
|
"build:legacy": "tsc && chmod +x dist/cli/main.js",
|
|
25
25
|
"dev": "tsx src/cli/main.ts",
|
|
26
|
-
"electron:rebuild": "electron-rebuild -f -w node-pty",
|
|
27
|
-
"ui:build-electron": "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",
|
|
26
|
+
"electron:rebuild": "electron-rebuild -f -w node-pty,better-sqlite3 && node scripts/fix-native-module-signatures.cjs",
|
|
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
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",
|
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
"@andresaya/edge-tts": "^1.8.0",
|
|
63
63
|
"@hono/node-server": "^1.19.9",
|
|
64
64
|
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
65
|
+
"@types/js-yaml": "^4.0.9",
|
|
65
66
|
"@vscode/ripgrep": "^1.17.0",
|
|
66
67
|
"ajv": "^8.17.1",
|
|
67
68
|
"ansi-escapes": "^7.2.0",
|
|
@@ -83,6 +84,7 @@
|
|
|
83
84
|
"ink-spinner": "^5.0.0",
|
|
84
85
|
"ink-text-input": "^6.0.0",
|
|
85
86
|
"is-in-ci": "^2.0.0",
|
|
87
|
+
"js-yaml": "^4.1.1",
|
|
86
88
|
"marked": "^15.0.12",
|
|
87
89
|
"marked-terminal": "^7.3.0",
|
|
88
90
|
"node-pty": "^1.1.0",
|
|
@@ -104,6 +106,7 @@
|
|
|
104
106
|
"uqr": "^0.1.2",
|
|
105
107
|
"widest-line": "^5.0.0",
|
|
106
108
|
"wrap-ansi": "^9.0.2",
|
|
109
|
+
"ws": "^8.19.0",
|
|
107
110
|
"yoga-layout": "^3.2.1",
|
|
108
111
|
"zod": "^3.22.4"
|
|
109
112
|
},
|