@mk-co/neox-cli 2.0.87 → 2.0.88
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 +1844 -1497
- package/dist/sdk/index.js +1134 -748
- package/dist/server/main.js +1093 -707
- package/package.json +15 -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.88",
|
|
4
4
|
"description": "Professional AI code assistant CLI powered by Node.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli/main.js",
|
|
@@ -32,12 +32,20 @@
|
|
|
32
32
|
"start": "node dist/cli/main.js",
|
|
33
33
|
"clean": "rm -rf dist",
|
|
34
34
|
"type-check": "tsc --project tsconfig.typecheck.json --noEmit",
|
|
35
|
+
"quality:hygiene": "tsx scripts/quality/hygiene-audit.ts",
|
|
35
36
|
"prepublishOnly": "npm run clean && npm run build && npm run type-check",
|
|
36
37
|
"link": "npm run build && npm link",
|
|
37
38
|
"unlink": "npm unlink -g neox-cli",
|
|
38
39
|
"setup-java-debug": "bash scripts/download-java-debug.sh",
|
|
39
40
|
"demo:code-interpreter": "tsx examples/code-interpreter-demo.ts",
|
|
40
|
-
"demo:code-agent": "tsx examples/code-interpreter-agent.ts"
|
|
41
|
+
"demo:code-agent": "tsx examples/code-interpreter-agent.ts",
|
|
42
|
+
"fortress:test": "tsx src/fortress/scripts/build-fortress.ts --test",
|
|
43
|
+
"fortress:build": "tsx src/fortress/scripts/build-fortress.ts",
|
|
44
|
+
"fortress:bytecode": "tsx src/fortress/scripts/compile-bytecode.ts",
|
|
45
|
+
"fortress:bytecode:full": "tsx src/fortress/scripts/compile-bytecode.ts --bytecode",
|
|
46
|
+
"fortress:encrypt": "tsx src/fortress/scripts/encrypt-asar.ts",
|
|
47
|
+
"fortress:morph": "tsx src/fortress/scripts/polymorphic.ts",
|
|
48
|
+
"fortress:all": "npm run fortress:build && npm run fortress:bytecode:full && npm run fortress:morph"
|
|
41
49
|
},
|
|
42
50
|
"keywords": [
|
|
43
51
|
"cli",
|
|
@@ -58,6 +66,7 @@
|
|
|
58
66
|
"ansi-escapes": "^7.2.0",
|
|
59
67
|
"auto-bind": "^5.0.1",
|
|
60
68
|
"axios": "^1.6.7",
|
|
69
|
+
"better-sqlite3": "^12.6.2",
|
|
61
70
|
"chalk": "^4.1.2",
|
|
62
71
|
"chokidar": "^4.0.3",
|
|
63
72
|
"cli-cursor": "^4.0.0",
|
|
@@ -95,6 +104,7 @@
|
|
|
95
104
|
"devDependencies": {
|
|
96
105
|
"@electron/rebuild": "^4.0.1",
|
|
97
106
|
"@monaco-editor/react": "^4.7.0",
|
|
107
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
98
108
|
"@types/node": "^20.11.19",
|
|
99
109
|
"@types/prompts": "^2.4.9",
|
|
100
110
|
"@types/react": "^19.2.7",
|
|
@@ -104,6 +114,7 @@
|
|
|
104
114
|
"@xterm/addon-fit": "^0.11.0",
|
|
105
115
|
"@xterm/addon-web-links": "^0.12.0",
|
|
106
116
|
"@xterm/xterm": "^6.0.0",
|
|
117
|
+
"bytenode": "^1.5.7",
|
|
107
118
|
"concurrently": "^9.1.2",
|
|
108
119
|
"cross-env": "^7.0.3",
|
|
109
120
|
"electron": "^40.0.0",
|
|
@@ -113,6 +124,7 @@
|
|
|
113
124
|
"puppeteer-core": "^24.32.0",
|
|
114
125
|
"react-devtools-core": "^6.1.5",
|
|
115
126
|
"react-dom": "^19.2.3",
|
|
127
|
+
"terser": "^5.46.0",
|
|
116
128
|
"tsup": "^8.5.1",
|
|
117
129
|
"tsx": "^4.7.1",
|
|
118
130
|
"typescript": "^5.3.3",
|
|
@@ -122,4 +134,4 @@
|
|
|
122
134
|
"engines": {
|
|
123
135
|
"node": ">=20.0.0"
|
|
124
136
|
}
|
|
125
|
-
}
|
|
137
|
+
}
|