@juspay/neurolink 8.40.1 → 8.41.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +10 -5
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [8.41.0](https://github.com/juspay/neurolink/compare/v8.40.1...v8.41.0) (2026-01-29)
2
+
3
+ ### Features
4
+
5
+ - **(docs):** migrate documentation from MkDocs to Docusaurus v3 ([2f70a32](https://github.com/juspay/neurolink/commit/2f70a32d930eae2756e7785b12ee5912dd4ed5e2))
6
+
1
7
  ## [8.40.1](https://github.com/juspay/neurolink/compare/v8.40.0...v8.40.1) (2026-01-28)
2
8
 
3
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/neurolink",
3
- "version": "8.40.1",
3
+ "version": "8.41.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 13 providers: OpenAI, Anthropic, Google AI, AWS Bedrock, Azure, Hugging Face, Ollama, and Mistral AI.",
5
5
  "author": {
6
6
  "name": "Juspay Technologies",
@@ -78,14 +78,19 @@
78
78
  "content:videos": "node tools/converted-scripts/generateAllVideos.js",
79
79
  "content:cleanup": "node tools/converted-scripts/cleanupHashNamedVideos.js",
80
80
  "content:all": "pnpm run content:videos",
81
- "// Documentation Automation": "",
81
+ "// Documentation Automation (Legacy MkDocs)": "",
82
82
  "docs:api": "typedoc",
83
83
  "docs:sync": "bash scripts/sync-readme.sh",
84
- "docs:build": "pnpm run docs:api && bash scripts/sync-readme.sh && mkdocs build --strict --clean",
85
- "docs:serve": "bash scripts/sync-readme.sh && mkdocs serve",
86
- "docs:gh-deploy": "bash scripts/sync-readme.sh && mkdocs gh-deploy --force",
84
+ "docs:build:mkdocs": "pnpm run docs:api && bash scripts/sync-readme.sh && mkdocs build --strict --clean",
85
+ "docs:serve:mkdocs": "bash scripts/sync-readme.sh && mkdocs serve",
86
+ "docs:gh-deploy:mkdocs": "bash scripts/sync-readme.sh && mkdocs gh-deploy --force",
87
87
  "docs:validate": "node tools/content/documentationSync.js --validate",
88
88
  "docs:generate": "pnpm run docs:validate",
89
+ "// Documentation (Docusaurus)": "",
90
+ "docs:start": "pnpm --filter ./docs-site start",
91
+ "docs:build": "pnpm --filter ./docs-site build",
92
+ "docs:serve": "pnpm --filter ./docs-site serve",
93
+ "docs:clear": "pnpm --filter ./docs-site clear",
89
94
  "// Development & Monitoring": "",
90
95
  "dev:health": "node tools/development/healthMonitor.js",
91
96
  "dev:demo": "concurrently \"pnpm run dev\" \"node neurolink-demo/complete-enhanced-server.js\"",