@soulcraft/brainy 0.9.32 → 0.9.33

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/README.demo.md CHANGED
@@ -4,7 +4,7 @@ The Brainy interactive demo showcases the library's features in a web browser. F
4
4
 
5
5
  ## Prerequisites
6
6
 
7
- - Make sure you have Node.js installed (version 24.0.0 or higher)
7
+ - Make sure you have Node.js installed (version 23.0.0 or higher)
8
8
  - Ensure the project is built (run both `npm run build` and `npm run build:browser`)
9
9
 
10
10
  ## Running the Demo
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  [![Node.js](https://img.shields.io/badge/node-%3E%3D23.0.0-brightgreen.svg)](https://nodejs.org/)
7
7
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.1.6-blue.svg)](https://www.typescriptlang.org/)
8
8
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)
9
- [![npm](https://img.shields.io/badge/npm-v0.9.32-blue.svg)](https://www.npmjs.com/package/@soulcraft/brainy)
9
+ [![npm](https://img.shields.io/badge/npm-v0.9.33-blue.svg)](https://www.npmjs.com/package/@soulcraft/brainy)
10
10
 
11
11
  [//]: # ([![Cartographer](https://img.shields.io/badge/Cartographer-Official%20Standard-brightgreen)](https://github.com/sodal-project/cartographer))
12
12
 
@@ -280,7 +280,6 @@ Brainy's pipeline is designed to handle streaming data efficiently:
280
280
  - Automatic thread management based on environment capabilities
281
281
  - Example: `executeTypedPipeline(augmentations, method, args, { mode: ExecutionMode.THREADED })`
282
282
 
283
-
284
283
  ### Running the Pipeline
285
284
 
286
285
  The pipeline runs automatically when you:
@@ -416,7 +415,6 @@ brainy visualize
416
415
  brainy visualize --root <id> --depth 3
417
416
  ```
418
417
 
419
-
420
418
  ### Using the CLI in Your Code
421
419
 
422
420
  If you need to use the CLI functionality in your code, you can import it explicitly:
@@ -432,7 +430,6 @@ import '@soulcraft/brainy/cli'
432
430
  This will only build and load the CLI when you explicitly import it, keeping your bundle size small when you don't need
433
431
  the CLI.
434
432
 
435
-
436
433
  ### Available Commands
437
434
 
438
435
  #### Basic Database Operations:
@@ -1251,14 +1248,14 @@ comprehensive [Scaling Strategy](scalingStrategy.md) document.
1251
1248
 
1252
1249
  ## Requirements
1253
1250
 
1254
- - Node.js >= 24.0.0
1255
-
1251
+ - Node.js >= 23.0.0
1256
1252
 
1257
1253
  ## Contributing
1258
1254
 
1259
1255
  For detailed contribution guidelines, please see [CONTRIBUTING.md](CONTRIBUTING.md).
1260
1256
 
1261
- For developer documentation, including building, testing, and publishing instructions, please see [DEVELOPERS.md](DEVELOPERS.md).
1257
+ For developer documentation, including building, testing, and publishing instructions, please
1258
+ see [DEVELOPERS.md](DEVELOPERS.md).
1262
1259
 
1263
1260
  We have a [Code of Conduct](CODE_OF_CONDUCT.md) that all contributors are expected to follow.
1264
1261
 
@@ -2,5 +2,5 @@
2
2
  * This file is auto-generated during the build process.
3
3
  * Do not modify this file directly.
4
4
  */
5
- export declare const VERSION = "0.9.32";
5
+ export declare const VERSION = "0.9.33";
6
6
  //# sourceMappingURL=version.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soulcraft/brainy",
3
- "version": "0.9.32",
3
+ "version": "0.9.33",
4
4
  "description": "A vector graph database using HNSW indexing with Origin Private File System storage",
5
5
  "main": "dist/unified.js",
6
6
  "module": "dist/unified.js",
@@ -44,9 +44,9 @@
44
44
  "check-format": "prettier --check \"src/**/*.{ts,js}\"",
45
45
  "check-style": "node scripts/check-code-style.js",
46
46
  "prepare": "npm run build",
47
- "publish": "npm run build && npm publish",
48
- "publish:cli": "node scripts/generate-version.js && cd cli-package && npm run build && npm publish",
49
- "publish:both": "node scripts/publish-cli.js",
47
+ "deploy": "npm run build && npm publish",
48
+ "deploy:cli": "node scripts/generate-version.js && cd cli-package && npm run build && npm publish",
49
+ "deploy:both": "node scripts/publish-cli.js",
50
50
  "deploy:cloud:aws": "cd cloud-wrapper && npm run build && npm run deploy:aws",
51
51
  "deploy:cloud:gcp": "cd cloud-wrapper && npm run build && npm run deploy:gcp",
52
52
  "deploy:cloud:cloudflare": "cd cloud-wrapper && npm run build && npm run deploy:cloudflare",