@ornexus/neocortex-cli 4.6.8 → 4.7.0
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 +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ornexus/neocortex-cli",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.0",
|
|
4
4
|
"description": "Neocortex CLI - AI Agent Orchestrator for multi-platform development (Claude Code, Cursor, VS Code, Gemini, Codex)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
],
|
|
48
48
|
"scripts": {
|
|
49
49
|
"postinstall": "node -e \"console.log('\\nNeocortex CLI v'+require('./package.json').version+' instalado!\\n\\nSetup: npx @ornexus/neocortex-cli\\nBinarios: https://github.com/OrNexus-AI/neocortex-cli/releases\\n')\"",
|
|
50
|
+
"prepare": "bun run scripts/ensure-asset-stub.ts",
|
|
50
51
|
"sync": "node sync-version.js",
|
|
51
52
|
"prepublishOnly": "node -e \"console.log('Publishing Neocortex CLI v'+require('./package.json').version)\"",
|
|
52
53
|
"version": "npm run sync && echo '🔖 Nova versão:' && cat package.json | grep version",
|
|
@@ -55,7 +56,7 @@
|
|
|
55
56
|
"lint": "bunx biome check packages/",
|
|
56
57
|
"lint:fix": "bunx biome check --fix packages/",
|
|
57
58
|
"bundle:assets": "bun run scripts/bundle-assets.ts",
|
|
58
|
-
"build": "bun run --filter '@neocortex-cli/shared' build && bun run --filter '@neocortex-cli/core' build && bun run --filter '@neocortex-cli/cli' build",
|
|
59
|
+
"build": "bun run scripts/ensure-asset-stub.ts && bun run --filter '@neocortex-cli/shared' build && bun run --filter '@neocortex-cli/core' build && bun run --filter '@neocortex-cli/cli' build",
|
|
59
60
|
"compile": "bun run bundle:assets && bun run build && bun run compile:all",
|
|
60
61
|
"compile:all": "bun run compile:linux-x64 && bun run compile:darwin-arm64 && bun run compile:darwin-x64 && bun run compile:windows-x64",
|
|
61
62
|
"compile:linux-x64": "bun build packages/cli/src/index.ts --compile --target=bun-linux-x64 --outfile dist/bin/neocortex-cli-linux-x64",
|