@mk-co/neox-cli 2.0.90 → 2.0.91
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 +910 -1339
- package/dist/sdk/index.js +595 -1023
- package/dist/server/main.js +818 -1245
- package/package.json +9 -6
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.91",
|
|
4
4
|
"description": "Professional AI code assistant CLI powered by Node.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli/main.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"build:legacy": "tsc && chmod +x dist/cli/main.js",
|
|
25
25
|
"dev": "tsx src/cli/main.ts",
|
|
26
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/",
|
|
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",
|
|
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",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"clean": "rm -rf dist",
|
|
34
34
|
"type-check": "tsc --project tsconfig.typecheck.json --noEmit",
|
|
35
35
|
"quality:hygiene": "tsx scripts/quality/hygiene-audit.ts",
|
|
36
|
+
"verify:electron-runtime-deps": "node scripts/check-electron-runtime-deps.cjs",
|
|
36
37
|
"prepublishOnly": "npm run clean && npm run build && npm run type-check",
|
|
37
38
|
"link": "npm run build && npm link",
|
|
38
39
|
"unlink": "npm unlink -g neox-cli",
|
|
@@ -67,13 +68,16 @@
|
|
|
67
68
|
"auto-bind": "^5.0.1",
|
|
68
69
|
"axios": "^1.6.7",
|
|
69
70
|
"better-sqlite3": "^12.6.2",
|
|
71
|
+
"bytenode": "^1.5.7",
|
|
70
72
|
"chalk": "^4.1.2",
|
|
71
73
|
"chokidar": "^4.0.3",
|
|
72
74
|
"cli-cursor": "^4.0.0",
|
|
73
75
|
"duck-duck-scrape": "^2.2.7",
|
|
74
76
|
"execa": "^8.0.1",
|
|
75
77
|
"fast-glob": "^3.3.2",
|
|
78
|
+
"glob": "^10.5.0",
|
|
76
79
|
"hono": "^4.11.9",
|
|
80
|
+
"https-proxy-agent": "^7.0.6",
|
|
77
81
|
"ink": "^6.6.0",
|
|
78
82
|
"ink-select-input": "^6.2.0",
|
|
79
83
|
"ink-spinner": "^5.0.0",
|
|
@@ -81,10 +85,12 @@
|
|
|
81
85
|
"is-in-ci": "^2.0.0",
|
|
82
86
|
"marked": "^15.0.12",
|
|
83
87
|
"marked-terminal": "^7.3.0",
|
|
88
|
+
"node-pty": "^1.1.0",
|
|
84
89
|
"openai": "^4.28.0",
|
|
85
90
|
"ora": "^8.0.1",
|
|
86
91
|
"patch-console": "^2.0.0",
|
|
87
92
|
"prompts": "^2.4.2",
|
|
93
|
+
"puppeteer-core": "^24.32.0",
|
|
88
94
|
"qrcode": "^1.5.3",
|
|
89
95
|
"react": "^19.2.3",
|
|
90
96
|
"react-markdown": "^10.1.0",
|
|
@@ -99,8 +105,7 @@
|
|
|
99
105
|
"widest-line": "^5.0.0",
|
|
100
106
|
"wrap-ansi": "^9.0.2",
|
|
101
107
|
"yoga-layout": "^3.2.1",
|
|
102
|
-
"zod": "^3.22.4"
|
|
103
|
-
"node-pty": "^1.1.0"
|
|
108
|
+
"zod": "^3.22.4"
|
|
104
109
|
},
|
|
105
110
|
"devDependencies": {
|
|
106
111
|
"@electron/rebuild": "^4.0.1",
|
|
@@ -115,13 +120,11 @@
|
|
|
115
120
|
"@xterm/addon-fit": "^0.11.0",
|
|
116
121
|
"@xterm/addon-web-links": "^0.12.0",
|
|
117
122
|
"@xterm/xterm": "^6.0.0",
|
|
118
|
-
"bytenode": "^1.5.7",
|
|
119
123
|
"concurrently": "^9.1.2",
|
|
120
124
|
"cross-env": "^7.0.3",
|
|
121
125
|
"electron": "^40.0.0",
|
|
122
126
|
"icon-gen": "^5.0.0",
|
|
123
127
|
"ink-testing-library": "^4.0.0",
|
|
124
|
-
"puppeteer-core": "^24.32.0",
|
|
125
128
|
"react-devtools-core": "^6.1.5",
|
|
126
129
|
"react-dom": "^19.2.3",
|
|
127
130
|
"terser": "^5.46.0",
|