@juspay/neurolink 9.7.0 → 9.8.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 +26 -25
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [9.8.0](https://github.com/juspay/neurolink/compare/v9.7.0...v9.8.0) (2026-02-17)
2
+
3
+ ### Features
4
+
5
+ - **(scripts):** migrate peripheral JS/CJS/MJS files to TypeScript with tsx runner ([25f17e8](https://github.com/juspay/neurolink/commit/25f17e81c09d6184a4bf2ff15e4427c302fde55e))
6
+
1
7
  ## [9.7.0](https://github.com/juspay/neurolink/compare/v9.6.0...v9.7.0) (2026-02-16)
2
8
 
3
9
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/neurolink",
3
- "version": "9.7.0",
3
+ "version": "9.8.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",
@@ -37,28 +37,28 @@
37
37
  "prepack": "svelte-kit sync && svelte-package && pnpm run build:cli && publint",
38
38
  "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json && tsc --noEmit --strict",
39
39
  "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
40
- "modelServer": "node scripts/modelServer.js",
40
+ "modelServer": "tsx scripts/modelServer.ts",
41
41
  "lint": "prettier --check . && eslint .",
42
42
  "format": "prettier --write .",
43
43
  "format:check": "prettier --check .",
44
- "format:staged": "node scripts/format-staged.cjs",
44
+ "format:staged": "tsx scripts/format-staged.ts",
45
45
  "changeset": "changeset",
46
46
  "changeset:version": "changeset version && git add --all",
47
- "format:changelog": "node scripts/format-changelog.cjs",
47
+ "format:changelog": "tsx scripts/format-changelog.ts",
48
48
  "// ===== NEUROLINK DEVELOPER EXPERIENCE ENHANCEMENT 2.0 =====": "",
49
49
  "// Environment & Setup (pnpm-first)": "",
50
- "setup": "pnpm install && node tools/automation/environmentManager.js",
50
+ "setup": "pnpm install && tsx tools/setup.ts",
51
51
  "setup:complete": "pnpm run setup && pnpm run project:organize && pnpm run env:validate",
52
- "env:setup": "node tools/automation/environmentManager.js",
53
- "env:validate": "node tools/automation/environmentManager.js --validate",
54
- "env:backup": "node tools/automation/environmentManager.js --backup",
55
- "env:list-backups": "node tools/automation/environmentManager.js --list-backups",
52
+ "env:setup": "tsx tools/automation/environmentManager.ts",
53
+ "env:validate": "tsx tools/automation/environmentManager.ts --validate",
54
+ "env:backup": "tsx tools/automation/environmentManager.ts --backup",
55
+ "env:list-backups": "tsx tools/automation/environmentManager.ts --list-backups",
56
56
  "// Project Management & Analysis": "",
57
- "project:organize": "node tools/automation/projectOrganizer.js",
58
- "project:health": "node tools/development/healthMonitor.js",
57
+ "project:organize": "tsx tools/automation/projectOrganizer.ts",
58
+ "project:health": "tsx tools/development/healthMonitor.ts",
59
59
  "// Shell Script Conversion": "",
60
- "convert:shell-scripts": "node tools/automation/shellConverter.js",
61
- "convert:specific": "node tools/automation/shellConverter.js --specific",
60
+ "convert:shell-scripts": "tsx tools/automation/shellConverter.ts",
61
+ "convert:specific": "tsx tools/automation/shellConverter.ts --specific",
62
62
  "// Testing (Enhanced Vitest Framework)": "",
63
63
  "test": "vitest run",
64
64
  "test:watch": "vitest",
@@ -71,13 +71,13 @@
71
71
  "test:e2e": "vitest run test/e2e",
72
72
  "test:ci": "vitest run --coverage --reporter=junit --reporter=verbose",
73
73
  "test:debug": "vitest --inspect-brk",
74
- "test:performance": "node tools/testing/performanceMonitor.js",
74
+ "test:performance": "tsx tools/testing/performanceMonitor.ts",
75
75
  "// Legacy Testing Support (during transition)": "",
76
76
  "test:legacy": "npx tsx test/continuous-test-suite.ts",
77
77
  "test:comparison": "pnpm run test && pnpm run test:legacy",
78
78
  "// Content Generation (Cross-platform JS)": "",
79
- "content:videos": "node tools/converted-scripts/generateAllVideos.js",
80
- "content:cleanup": "node tools/converted-scripts/cleanupHashNamedVideos.js",
79
+ "content:videos": "tsx tools/converted-scripts/generateAllVideos.ts",
80
+ "content:cleanup": "tsx tools/converted-scripts/cleanupHashNamedVideos.ts",
81
81
  "content:all": "pnpm run content:videos",
82
82
  "// Documentation Automation (Legacy MkDocs)": "",
83
83
  "docs:api": "typedoc",
@@ -85,7 +85,7 @@
85
85
  "docs:build:mkdocs": "pnpm run docs:api && bash scripts/sync-readme.sh && mkdocs build --strict --clean",
86
86
  "docs:serve:mkdocs": "bash scripts/sync-readme.sh && mkdocs serve",
87
87
  "docs:gh-deploy:mkdocs": "bash scripts/sync-readme.sh && mkdocs gh-deploy --force",
88
- "docs:validate": "node tools/content/documentationSync.js --validate",
88
+ "docs:validate": "tsx tools/content/documentationSync.ts --validate",
89
89
  "docs:generate": "pnpm run docs:validate",
90
90
  "// Documentation (Docusaurus)": "",
91
91
  "docs:start": "pnpm --filter ./docs-site start",
@@ -93,11 +93,11 @@
93
93
  "docs:serve": "pnpm --filter ./docs-site serve",
94
94
  "docs:clear": "pnpm --filter ./docs-site clear",
95
95
  "// Development & Monitoring": "",
96
- "dev:health": "node tools/development/healthMonitor.js",
96
+ "dev:health": "tsx tools/development/healthMonitor.ts",
97
97
  "dev:demo": "concurrently \"pnpm run dev\" \"node neurolink-demo/complete-enhanced-server.js\"",
98
- "demo:voice": "pnpm build && node examples/voice-demo/server.mjs",
98
+ "demo:voice": "pnpm build && tsx examples/voice-demo/server.ts",
99
99
  "// Build & Deploy (Complete Pipeline)": "",
100
- "build:complete": "node tools/automation/buildSystem.js",
100
+ "build:complete": "tsx tools/automation/buildSystem.ts",
101
101
  "// Quality & Maintenance": "",
102
102
  "quality:all": "pnpm run lint && pnpm run format && pnpm run test:ci",
103
103
  "clean": "pnpm run content:cleanup && rm -rf dist .svelte-kit node_modules/.cache",
@@ -108,12 +108,12 @@
108
108
  "test:semantic-release": "node scripts/test-semantic-release.js",
109
109
  "release:dry-run": "npx semantic-release --dry-run",
110
110
  "// Build Rule Enforcement Scripts": "",
111
- "validate": "node scripts/build-validations.cjs",
112
- "validate:env": "node scripts/env-validation.cjs",
113
- "validate:security": "node scripts/security-check.cjs",
111
+ "validate": "tsx scripts/build-validations.ts",
112
+ "validate:env": "tsx scripts/env-validation.ts",
113
+ "validate:security": "tsx scripts/security-check.ts",
114
114
  "validate:all": "pnpm run validate && pnpm run validate:env && pnpm run validate:security",
115
- "validate:commit": "node scripts/commit-validation.cjs",
116
- "quality:metrics": "node scripts/quality-metrics.cjs",
115
+ "validate:commit": "tsx scripts/commit-validation.ts",
116
+ "quality:metrics": "tsx scripts/quality-metrics.ts",
117
117
  "quality:report": "pnpm run quality:metrics && echo 'Quality metrics saved to quality-metrics.json'",
118
118
  "pre-commit": "lint-staged",
119
119
  "pre-push": "pnpm run validate:commit && pnpm run validate:env && pnpm run validate && pnpm run test",
@@ -299,6 +299,7 @@
299
299
  "svelte": "^5.0.0",
300
300
  "svelte-check": "^4.0.0",
301
301
  "tslib": "^2.4.1",
302
+ "tsx": "^4.21.0",
302
303
  "typedoc": "^0.28.15",
303
304
  "typedoc-plugin-markdown": "^4.9.0",
304
305
  "typescript": "^5.0.0",