@juspay/neurolink 1.5.0 → 1.5.1

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 CHANGED
@@ -1,5 +1,34 @@
1
1
  # @juspay/neurolink
2
2
 
3
+ ## 1.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - **🔧 Critical CLI Dependency Fix**: Removed peer dependencies to ensure zero-friction CLI usage
8
+ - **Issue**: CLI commands failed when provider-specific SDK packages were peer dependencies
9
+ - **Root Cause**: `npx` doesn't install peer dependencies, causing missing module errors
10
+ - **Solution**: Moved ALL AI provider SDKs to regular dependencies
11
+ - **Impact**: **100% reliable CLI** - all providers work immediately with `npx @juspay/neurolink`
12
+ - **Dependencies**: All AI SDK packages now bundled automatically (@ai-sdk/openai, @ai-sdk/bedrock, @ai-sdk/vertex, @ai-sdk/google)
13
+
14
+ - **📄 Critical Legal Compliance**: Added missing MIT LICENSE file
15
+ - **Issue**: Package claimed MIT license but had no LICENSE file in repository
16
+ - **Legal Risk**: Without explicit license file, users had no legal permission to use the software
17
+ - **Solution**: Added proper MIT License file with Juspay Technologies copyright (2025)
18
+ - **Impact**: **Full legal compliance** - users now have explicit permission to use, modify, and distribute
19
+ - **Files**: Added `LICENSE` file with standard MIT license text
20
+
21
+ ### Technical Changes
22
+
23
+ - **Dependency Structure**: Eliminated peer dependencies entirely for CLI compatibility
24
+ - **Provider Support**: All 5 AI providers (OpenAI, Bedrock, Vertex AI, Google AI Studio, Anthropic) now work out-of-the-box
25
+ - **Zero Setup**: No manual dependency installation required for any provider
26
+ - **Repository Structure**: LICENSE file now included in package distribution
27
+ - **Legal Clarity**: Explicit copyright and permission statements
28
+ - **Compliance**: Matches industry standards for open source software licensing
29
+ - **Package Files**: LICENSE included in NPM package distribution
30
+ - **Backward Compatibility**: 100% compatible with existing code and configurations
31
+
3
32
  ## 1.5.0
4
33
 
5
34
  ### Major Changes
@@ -58,6 +87,13 @@ npx @juspay/neurolink generate-text "Hello, AI!" --provider google-ai
58
87
  - **Authentication**: Simple API key authentication via Google AI Studio
59
88
  - **Testing**: Complete test coverage including provider and CLI tests
60
89
 
90
+ ### Bug Fixes
91
+
92
+ - **🔧 CLI Dependencies**: Moved essential dependencies (`ai`, `zod`) from peer to regular dependencies
93
+ - **Issue**: `npx @juspay/neurolink` commands failed due to missing dependencies
94
+ - **Solution**: CLI now works out-of-the-box without manual dependency installation
95
+ - **Impact**: Zero-friction CLI usage for all users
96
+
61
97
  ### Breaking Changes
62
98
 
63
99
  - None - 100% backward compatibility maintained
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Juspay Technologies
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -19,8 +19,10 @@ export GOOGLE_AI_API_KEY="AIza-your-google-ai-api-key"
19
19
  # CLI - No installation required
20
20
  npx @juspay/neurolink generate-text "Hello, AI!"
21
21
  npx @juspay/neurolink status
22
+ ```
22
23
 
23
- # SDK Installation
24
+ ```bash
25
+ # SDK Installation for using in your typescript projects
24
26
  npm install @juspay/neurolink
25
27
  ```
26
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/neurolink",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "Universal AI Development Platform with external MCP server integration, multi-provider support, and professional CLI. Connect to 65+ MCP servers for filesystem, GitHub, database operations, and more. Build, test, and deploy AI applications with OpenAI, Anthropic, Google Vertex AI, and AWS Bedrock.",
5
5
  "author": {
6
6
  "name": "Juspay Technologies",
@@ -58,26 +58,12 @@
58
58
  "default": "./dist/cli/index.js"
59
59
  }
60
60
  },
61
- "peerDependencies": {
61
+ "dependencies": {
62
62
  "@ai-sdk/amazon-bedrock": "^1.0.0",
63
+ "@ai-sdk/google": "^1.2.19",
63
64
  "@ai-sdk/google-vertex": "^2.2.0",
64
65
  "@ai-sdk/openai": "^1.0.0",
65
66
  "ai": "^4.0.0",
66
- "zod": "^3.22.0"
67
- },
68
- "peerDependenciesMeta": {
69
- "@ai-sdk/amazon-bedrock": {
70
- "optional": true
71
- },
72
- "@ai-sdk/google-vertex": {
73
- "optional": true
74
- },
75
- "@ai-sdk/openai": {
76
- "optional": true
77
- }
78
- },
79
- "dependencies": {
80
- "@ai-sdk/google": "^1.2.19",
81
67
  "chalk": "^5.3.0",
82
68
  "dotenv": "^16.5.0",
83
69
  "inquirer": "^9.2.15",