@mk-co/neox-cli 2.0.68 → 2.0.74
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 +1683 -1042
- package/dist/sdk/index.js +2350 -1748
- package/dist/server/main.js +2348 -1747
- package/package.json +9 -9
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.74",
|
|
4
4
|
"description": "Professional AI code assistant CLI powered by Node.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli/main.js",
|
|
@@ -49,11 +49,7 @@
|
|
|
49
49
|
"@andresaya/edge-tts": "^1.8.0",
|
|
50
50
|
"@hono/node-server": "^1.19.9",
|
|
51
51
|
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
52
|
-
"@monaco-editor/react": "^4.7.0",
|
|
53
52
|
"@vscode/ripgrep": "^1.17.0",
|
|
54
|
-
"@xterm/addon-fit": "^0.11.0",
|
|
55
|
-
"@xterm/addon-web-links": "^0.12.0",
|
|
56
|
-
"@xterm/xterm": "^6.0.0",
|
|
57
53
|
"ajv": "^8.17.1",
|
|
58
54
|
"ansi-escapes": "^7.2.0",
|
|
59
55
|
"auto-bind": "^5.0.1",
|
|
@@ -72,16 +68,12 @@
|
|
|
72
68
|
"is-in-ci": "^2.0.0",
|
|
73
69
|
"marked": "^15.0.12",
|
|
74
70
|
"marked-terminal": "^7.3.0",
|
|
75
|
-
"node-pty": "^1.1.0",
|
|
76
71
|
"openai": "^4.28.0",
|
|
77
72
|
"ora": "^8.0.1",
|
|
78
73
|
"patch-console": "^2.0.0",
|
|
79
74
|
"prompts": "^2.4.2",
|
|
80
|
-
"puppeteer-core": "^24.32.0",
|
|
81
75
|
"qrcode": "^1.5.3",
|
|
82
76
|
"react": "^19.2.3",
|
|
83
|
-
"react-devtools-core": "^6.1.5",
|
|
84
|
-
"react-dom": "^19.2.3",
|
|
85
77
|
"react-markdown": "^10.1.0",
|
|
86
78
|
"react-reconciler": "^0.33.0",
|
|
87
79
|
"remark-gfm": "^4.0.1",
|
|
@@ -98,16 +90,24 @@
|
|
|
98
90
|
},
|
|
99
91
|
"devDependencies": {
|
|
100
92
|
"@electron/rebuild": "^4.0.1",
|
|
93
|
+
"@monaco-editor/react": "^4.7.0",
|
|
101
94
|
"@types/node": "^20.11.19",
|
|
102
95
|
"@types/prompts": "^2.4.9",
|
|
103
96
|
"@types/react": "^19.2.7",
|
|
104
97
|
"@types/react-dom": "^19.2.3",
|
|
105
98
|
"@types/ws": "^8.18.1",
|
|
106
99
|
"@vitejs/plugin-react": "^4.3.4",
|
|
100
|
+
"@xterm/addon-fit": "^0.11.0",
|
|
101
|
+
"@xterm/addon-web-links": "^0.12.0",
|
|
102
|
+
"@xterm/xterm": "^6.0.0",
|
|
107
103
|
"concurrently": "^9.1.2",
|
|
108
104
|
"cross-env": "^7.0.3",
|
|
109
105
|
"electron": "^40.0.0",
|
|
110
106
|
"icon-gen": "^5.0.0",
|
|
107
|
+
"node-pty": "^1.1.0",
|
|
108
|
+
"puppeteer-core": "^24.32.0",
|
|
109
|
+
"react-devtools-core": "^6.1.5",
|
|
110
|
+
"react-dom": "^19.2.3",
|
|
111
111
|
"tsup": "^8.5.1",
|
|
112
112
|
"tsx": "^4.7.1",
|
|
113
113
|
"typescript": "^5.3.3",
|