fix: add missing node-fetch dependency for brainy cloud command

- Added node-fetch to dependencies (was only in devDependencies)
- Fixes 'Cannot find package node-fetch' error when running brainy cloud
- Bumped version to 0.59.1
- Note: boolean deprecation warning comes from @huggingface/transformers deep dependency, cannot be fixed directly
This commit is contained in:
David Snelling 2025-08-10 11:21:05 -07:00
parent 936fb19402
commit 664bef2eae
2 changed files with 3 additions and 1 deletions

1
package-lock.json generated
View file

@ -18,6 +18,7 @@
"commander": "^11.1.0",
"dotenv": "^16.4.5",
"inquirer": "^12.9.1",
"node-fetch": "^3.3.2",
"ora": "^8.0.1",
"prompts": "^2.4.2",
"uuid": "^9.0.1"

View file

@ -1,6 +1,6 @@
{
"name": "@soulcraft/brainy",
"version": "0.59.0",
"version": "0.59.1",
"description": "A vector graph database using HNSW indexing with Origin Private File System storage",
"main": "dist/index.js",
"module": "dist/index.js",
@ -220,6 +220,7 @@
"commander": "^11.1.0",
"dotenv": "^16.4.5",
"inquirer": "^12.9.1",
"node-fetch": "^3.3.2",
"ora": "^8.0.1",
"prompts": "^2.4.2",
"uuid": "^9.0.1"