@juspay/neurolink 7.51.0 → 7.51.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 +2 -0
- package/package.json +9 -18
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "7.51.
|
|
3
|
+
"version": "7.51.1",
|
|
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",
|
|
@@ -35,9 +35,6 @@
|
|
|
35
35
|
"prepack": "svelte-kit sync && svelte-package && pnpm run build:cli && publint",
|
|
36
36
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json && tsc --noEmit --strict",
|
|
37
37
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
38
|
-
"test": "vitest",
|
|
39
|
-
"test:run": "vitest run",
|
|
40
|
-
"test:dynamicModels": "node test-dynamicModels.js",
|
|
41
38
|
"modelServer": "node scripts/modelServer.js",
|
|
42
39
|
"lint": "prettier --check . && eslint .",
|
|
43
40
|
"format": "prettier --write .",
|
|
@@ -54,44 +51,38 @@
|
|
|
54
51
|
"env:backup": "node tools/automation/environmentManager.js --backup",
|
|
55
52
|
"env:list-backups": "node tools/automation/environmentManager.js --list-backups",
|
|
56
53
|
"// Project Management & Analysis": "",
|
|
57
|
-
"project:analyze": "node tools/automation/scriptAnalyzer.js",
|
|
58
|
-
"project:cleanup": "node tools/automation/scriptAnalyzer.js --execute",
|
|
59
54
|
"project:organize": "node tools/automation/projectOrganizer.js",
|
|
60
55
|
"project:health": "node tools/development/healthMonitor.js",
|
|
61
56
|
"// Shell Script Conversion": "",
|
|
62
57
|
"convert:shell-scripts": "node tools/automation/shellConverter.js",
|
|
63
58
|
"convert:specific": "node tools/automation/shellConverter.js --specific",
|
|
64
|
-
"// Testing (
|
|
65
|
-
"test
|
|
66
|
-
"test:providers": "
|
|
59
|
+
"// Testing (Single Continuous Test Suite)": "",
|
|
60
|
+
"test": "pnpm run test:providers",
|
|
61
|
+
"test:providers": "npx tsx test/continuous-test-suite.ts",
|
|
67
62
|
"test:performance": "node tools/testing/performanceMonitor.js",
|
|
68
|
-
"test:
|
|
69
|
-
"test:ci": "pnpm run test:smart && pnpm run test:coverage",
|
|
63
|
+
"test:ci": "pnpm run test:providers && pnpm run test:performance",
|
|
70
64
|
"// Content Generation (Cross-platform JS)": "",
|
|
71
|
-
"content:screenshots": "node tools/content/screenshot-automation.js",
|
|
72
65
|
"content:videos": "node tools/converted-scripts/generateAllVideos.js",
|
|
73
66
|
"content:cleanup": "node tools/converted-scripts/cleanupHashNamedVideos.js",
|
|
74
|
-
"content:all": "pnpm run content:
|
|
67
|
+
"content:all": "pnpm run content:videos",
|
|
75
68
|
"// Documentation Automation": "",
|
|
76
69
|
"docs:sync": "bash scripts/sync-readme.sh",
|
|
77
70
|
"docs:build": "bash scripts/sync-readme.sh && mkdocs build --strict --clean",
|
|
78
71
|
"docs:serve": "bash scripts/sync-readme.sh && mkdocs serve",
|
|
79
72
|
"docs:gh-deploy": "bash scripts/sync-readme.sh && mkdocs gh-deploy --force",
|
|
80
73
|
"docs:validate": "node tools/content/documentationSync.js --validate",
|
|
81
|
-
"docs:generate": "pnpm run docs:validate
|
|
74
|
+
"docs:generate": "pnpm run docs:validate",
|
|
82
75
|
"// Development & Monitoring": "",
|
|
83
|
-
"dev:full": "node tools/development/dev-server.js",
|
|
84
76
|
"dev:health": "node tools/development/healthMonitor.js",
|
|
85
77
|
"dev:demo": "concurrently \"pnpm run dev\" \"node neurolink-demo/complete-enhanced-server.js\"",
|
|
86
78
|
"demo:voice": "pnpm build && node examples/voice-demo/server.mjs",
|
|
87
79
|
"// Build & Deploy (Complete Pipeline)": "",
|
|
88
80
|
"build:complete": "node tools/automation/buildSystem.js",
|
|
89
|
-
"build:analyze": "node tools/development/dependency-analyzer.js",
|
|
90
81
|
"// Quality & Maintenance": "",
|
|
91
82
|
"quality:all": "pnpm run lint && pnpm run format && pnpm run test:ci",
|
|
92
83
|
"clean": "pnpm run content:cleanup && rm -rf dist .svelte-kit node_modules/.cache",
|
|
93
84
|
"reset": "pnpm run clean && pnpm install",
|
|
94
|
-
"audit": "pnpm audit
|
|
85
|
+
"audit": "pnpm audit",
|
|
95
86
|
"// Release & Publishing": "",
|
|
96
87
|
"release": "pnpm run build:complete && pnpm run test:ci && changeset publish",
|
|
97
88
|
"test:semantic-release": "node scripts/test-semantic-release.js",
|
|
@@ -105,7 +96,7 @@
|
|
|
105
96
|
"quality:metrics": "node scripts/quality-metrics.cjs",
|
|
106
97
|
"quality:report": "pnpm run quality:metrics && echo 'Quality metrics saved to quality-metrics.json'",
|
|
107
98
|
"pre-commit": "lint-staged",
|
|
108
|
-
"pre-push": "pnpm run validate && pnpm run
|
|
99
|
+
"pre-push": "pnpm run validate:commit && pnpm run validate:env && pnpm run validate && pnpm run test",
|
|
109
100
|
"check:all": "pnpm run lint && pnpm run format --check && pnpm run validate && pnpm run validate:commit"
|
|
110
101
|
},
|
|
111
102
|
"files": [
|