@mk-co/neox-cli 2.0.7 → 2.0.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mk-co/neox-cli",
3
- "version": "2.0.7",
3
+ "version": "2.0.11",
4
4
  "description": "Professional AI code assistant CLI powered by Node.js",
5
5
  "type": "module",
6
6
  "main": "dist/cli/main.js",
@@ -11,6 +11,7 @@
11
11
  "files": [
12
12
  "dist/**/*.js",
13
13
  "dist/**/*.d.ts",
14
+ "dist/**/*.md",
14
15
  "!dist/**/*.map",
15
16
  "README.md",
16
17
  "LICENSE"
@@ -20,7 +21,6 @@
20
21
  "build:legacy": "tsc && chmod +x dist/cli/main.js",
21
22
  "dev": "tsx src/cli/main.ts",
22
23
  "electron:rebuild": "electron-rebuild -f -w node-pty",
23
- "postinstall": "node scripts/postinstall.js",
24
24
  "ui:build-electron": "tsc --project tsconfig.electron.json && node scripts/build-electron.js && cp src/ui/electron/preload.js dist/ui-electron/electron/",
25
25
  "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\"",
26
26
  "ui:build": "npm run ui:build-electron && cross-env NODE_ENV=production vite build --config vite.config.ui.ts",
@@ -46,10 +46,15 @@
46
46
  "author": "Your Name",
47
47
  "license": "MIT",
48
48
  "dependencies": {
49
+ "@monaco-editor/react": "^4.7.0",
49
50
  "@vscode/ripgrep": "^1.17.0",
51
+ "@xterm/addon-fit": "^0.11.0",
52
+ "@xterm/addon-web-links": "^0.12.0",
53
+ "@xterm/xterm": "^6.0.0",
50
54
  "ajv": "^8.17.1",
51
55
  "axios": "^1.6.7",
52
56
  "chalk": "^4.1.2",
57
+ "chokidar": "^4.0.3",
53
58
  "duck-duck-scrape": "^2.2.7",
54
59
  "execa": "^8.0.1",
55
60
  "fast-glob": "^3.3.2",
@@ -58,13 +63,21 @@
58
63
  "ink-select-input": "^6.2.0",
59
64
  "ink-spinner": "^5.0.0",
60
65
  "ink-text-input": "^6.0.0",
66
+ "marked": "^15.0.12",
67
+ "marked-terminal": "^7.3.0",
68
+ "node-pty": "^1.1.0",
61
69
  "openai": "^4.28.0",
62
70
  "ora": "^8.0.1",
63
71
  "prompts": "^2.4.2",
64
72
  "puppeteer-core": "^24.32.0",
73
+ "qrcode": "^1.5.3",
65
74
  "react": "^19.2.3",
66
75
  "react-devtools-core": "^6.1.5",
76
+ "react-dom": "^19.2.3",
77
+ "react-markdown": "^10.1.0",
78
+ "remark-gfm": "^4.0.1",
67
79
  "simple-git": "^3.30.0",
80
+ "uqr": "^0.1.2",
68
81
  "zod": "^3.22.4"
69
82
  },
70
83
  "devDependencies": {
@@ -83,20 +96,6 @@
83
96
  "typescript": "^5.3.3",
84
97
  "wait-on": "^8.0.2"
85
98
  },
86
- "optionalDependencies": {
87
- "@monaco-editor/react": "^4.7.0",
88
- "@xterm/addon-fit": "^0.10.0",
89
- "@xterm/addon-web-links": "^0.11.0",
90
- "@xterm/xterm": "^5.5.0",
91
- "chokidar": "^5.0.0",
92
- "monaco-editor": "^0.55.1",
93
- "node-pty": "^1.0.0",
94
- "react-dom": "^19.0.0",
95
- "react-markdown": "^10.1.0",
96
- "rehype-highlight": "^7.0.2",
97
- "remark-gfm": "^4.0.1",
98
- "xterm": "^5.3.0"
99
- },
100
99
  "engines": {
101
100
  "node": ">=20.0.0"
102
101
  }