@mk-co/neox-cli 2.0.83 → 2.0.86

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.83",
3
+ "version": "2.0.86",
4
4
  "description": "Professional AI code assistant CLI powered by Node.js",
5
5
  "type": "module",
6
6
  "main": "dist/cli/main.js",
@@ -17,6 +17,10 @@
17
17
  ],
18
18
  "scripts": {
19
19
  "build": "tsup",
20
+ "test": "tsx scripts/test-runner.ts",
21
+ "test:all": "tsx scripts/test-runner.ts --all",
22
+ "test:ci": "tsx scripts/test-runner.ts --ci",
23
+ "test:watch": "vitest",
20
24
  "build:legacy": "tsc && chmod +x dist/cli/main.js",
21
25
  "dev": "tsx src/cli/main.ts",
22
26
  "electron:rebuild": "electron-rebuild -f -w node-pty",
@@ -104,6 +108,7 @@
104
108
  "cross-env": "^7.0.3",
105
109
  "electron": "^40.0.0",
106
110
  "icon-gen": "^5.0.0",
111
+ "ink-testing-library": "^4.0.0",
107
112
  "node-pty": "^1.1.0",
108
113
  "puppeteer-core": "^24.32.0",
109
114
  "react-devtools-core": "^6.1.5",
@@ -111,9 +116,10 @@
111
116
  "tsup": "^8.5.1",
112
117
  "tsx": "^4.7.1",
113
118
  "typescript": "^5.3.3",
119
+ "vitest": "^4.0.18",
114
120
  "wait-on": "^8.0.2"
115
121
  },
116
122
  "engines": {
117
123
  "node": ">=20.0.0"
118
124
  }
119
- }
125
+ }