@juspay/neurolink 7.52.0 → 7.53.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/CHANGELOG.md +6 -0
- package/package.json +16 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [7.53.0](https://github.com/juspay/neurolink/compare/v7.52.0...v7.53.0) (2025-10-26)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **(test):** vitest configuration setup for cli ([ffb7db3](https://github.com/juspay/neurolink/commit/ffb7db301e2e883af5427db6e6d00a8a7dd65023))
|
|
6
|
+
|
|
1
7
|
## [7.52.0](https://github.com/juspay/neurolink/compare/v7.51.3...v7.52.0) (2025-10-24)
|
|
2
8
|
|
|
3
9
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.53.0",
|
|
4
4
|
"description": "Universal AI Development Platform with working MCP integration, multi-provider support, and professional CLI. Built-in tools operational, 58+ external MCP servers discoverable. Connect to filesystem, GitHub, database operations, and more. Build, test, and deploy AI applications with 9 major providers: OpenAI, Anthropic, Google AI, AWS Bedrock, Azure, Hugging Face, Ollama, and Mistral AI.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Juspay Technologies",
|
|
@@ -56,11 +56,22 @@
|
|
|
56
56
|
"// Shell Script Conversion": "",
|
|
57
57
|
"convert:shell-scripts": "node tools/automation/shellConverter.js",
|
|
58
58
|
"convert:specific": "node tools/automation/shellConverter.js --specific",
|
|
59
|
-
"// Testing (
|
|
60
|
-
"test": "
|
|
61
|
-
"test:
|
|
59
|
+
"// Testing (Enhanced Vitest Framework)": "",
|
|
60
|
+
"test": "vitest run",
|
|
61
|
+
"test:watch": "vitest",
|
|
62
|
+
"test:ui": "vitest --ui",
|
|
63
|
+
"test:coverage": "vitest run --coverage",
|
|
64
|
+
"test:providers": "vitest run test/unit/providers",
|
|
65
|
+
"test:cli": "vitest run test/integration/cli",
|
|
66
|
+
"test:sdk": "vitest run test/unit/sdk",
|
|
67
|
+
"test:integration": "vitest run test/integration",
|
|
68
|
+
"test:e2e": "vitest run test/e2e",
|
|
69
|
+
"test:ci": "vitest run --coverage --reporter=junit --reporter=verbose",
|
|
70
|
+
"test:debug": "vitest --inspect-brk",
|
|
62
71
|
"test:performance": "node tools/testing/performanceMonitor.js",
|
|
63
|
-
"
|
|
72
|
+
"// Legacy Testing Support (during transition)": "",
|
|
73
|
+
"test:legacy": "npx tsx test/continuous-test-suite.ts",
|
|
74
|
+
"test:comparison": "pnpm run test && pnpm run test:legacy",
|
|
64
75
|
"// Content Generation (Cross-platform JS)": "",
|
|
65
76
|
"content:videos": "node tools/converted-scripts/generateAllVideos.js",
|
|
66
77
|
"content:cleanup": "node tools/converted-scripts/cleanupHashNamedVideos.js",
|