@soulcraft/brainy 0.9.13 → 0.9.14
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.md +1 -1
- package/dist/utils/version.d.ts +1 -1
- package/package.json +6 -3
- package/dist/cli.js +0 -169296
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](https://nodejs.org/)
|
|
7
7
|
[](https://www.typescriptlang.org/)
|
|
8
8
|
[](CONTRIBUTING.md)
|
|
9
|
-
[](https://www.npmjs.com/package/@soulcraft/brainy)
|
|
10
10
|
|
|
11
11
|
[//]: # ([](https://github.com/sodal-project/cartographer))
|
|
12
12
|
|
package/dist/utils/version.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soulcraft/brainy",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.14",
|
|
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",
|
|
@@ -31,9 +31,10 @@
|
|
|
31
31
|
"prebuild": "node scripts/generate-version.js",
|
|
32
32
|
"build": "BUILD_TYPE=unified rollup -c rollup.config.js",
|
|
33
33
|
"build:browser": "BUILD_TYPE=browser rollup -c rollup.config.js",
|
|
34
|
+
"build:cli": "BUILD_TYPE=cli rollup -c rollup.config.js",
|
|
34
35
|
"start": "node dist/unified.js",
|
|
35
36
|
"demo": "npm run build && npm run build:browser && npx http-server -o /index.html",
|
|
36
|
-
"cli": "node ./cli-wrapper.js",
|
|
37
|
+
"cli": "npm run build:cli && node ./cli-wrapper.js",
|
|
37
38
|
"version": "node scripts/generate-version.js",
|
|
38
39
|
"version:patch": "npm version patch",
|
|
39
40
|
"version:minor": "npm version minor",
|
|
@@ -84,7 +85,9 @@
|
|
|
84
85
|
"LICENSE",
|
|
85
86
|
"README.md",
|
|
86
87
|
"cli-wrapper.js",
|
|
87
|
-
"brainy.png"
|
|
88
|
+
"brainy.png",
|
|
89
|
+
"!dist/cli.js",
|
|
90
|
+
"!dist/cli.js.map"
|
|
88
91
|
],
|
|
89
92
|
"devDependencies": {
|
|
90
93
|
"@rollup/plugin-commonjs": "^25.0.7",
|