@soulcraft/brainy 0.27.0 → 0.29.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.
- package/README.md +71 -0
- package/dist/brainyData.d.ts +53 -0
- package/dist/coreTypes.d.ts +75 -0
- package/dist/hnsw/hnswIndex.d.ts +15 -0
- package/dist/hnsw/hnswIndex.d.ts.map +1 -1
- package/dist/storage/adapters/baseStorageAdapter.d.ts +46 -0
- package/dist/storage/adapters/baseStorageAdapter.d.ts.map +1 -1
- package/dist/storage/adapters/memoryStorage.d.ts +41 -0
- package/dist/storage/adapters/memoryStorage.d.ts.map +1 -1
- package/dist/storage/adapters/s3CompatibleStorage.d.ts.map +1 -1
- package/dist/storage/baseStorage.d.ts +46 -0
- package/dist/storage/baseStorage.d.ts.map +1 -1
- package/dist/types/paginationTypes.d.ts +111 -0
- package/dist/types/paginationTypes.d.ts.map +1 -0
- package/dist/unified.js +791 -89
- package/dist/unified.min.js +1 -1
- package/package.json +15 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soulcraft/brainy",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.29.0",
|
|
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",
|
|
@@ -54,19 +54,25 @@
|
|
|
54
54
|
"build:browser": "BUILD_TYPE=browser rollup -c rollup.config.js",
|
|
55
55
|
"start": "node dist/unified.js",
|
|
56
56
|
"demo": "npm run build && npm run build:browser && npx http-server -o /demo/index.html",
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
57
|
+
"release": "standard-version",
|
|
58
|
+
"release:patch": "standard-version --release-as patch",
|
|
59
|
+
"release:minor": "standard-version --release-as minor",
|
|
60
|
+
"release:major": "standard-version --release-as major",
|
|
61
|
+
"release:dry-run": "standard-version --dry-run",
|
|
62
|
+
"github-release": "node scripts/create-github-release.js",
|
|
63
|
+
"changelog:check": "echo 'Changelog is now automatically generated from commit messages'",
|
|
63
64
|
"lint": "eslint --ext .ts,.js src/",
|
|
64
65
|
"lint:fix": "eslint --ext .ts,.js src/ --fix",
|
|
65
66
|
"format": "prettier --write \"src/**/*.{ts,js}\"",
|
|
66
67
|
"check:format": "prettier --check \"src/**/*.{ts,js}\"",
|
|
67
68
|
"check:style": "node scripts/check-code-style.js",
|
|
68
69
|
"prepare": "npm run build",
|
|
69
|
-
"deploy": "npm run build && npm publish
|
|
70
|
+
"deploy": "npm run build && npm publish",
|
|
71
|
+
"workflow": "node scripts/release-workflow.js",
|
|
72
|
+
"workflow:patch": "node scripts/release-workflow.js patch",
|
|
73
|
+
"workflow:minor": "node scripts/release-workflow.js minor",
|
|
74
|
+
"workflow:major": "node scripts/release-workflow.js major",
|
|
75
|
+
"workflow:dry-run": "npm run build && npm test && npm run release:dry-run",
|
|
70
76
|
"dry-run": "npm pack --dry-run",
|
|
71
77
|
"test": "vitest run",
|
|
72
78
|
"test:watch": "vitest",
|
|
@@ -148,6 +154,7 @@
|
|
|
148
154
|
"puppeteer": "^22.5.0",
|
|
149
155
|
"rollup": "^4.13.0",
|
|
150
156
|
"rollup-plugin-terser": "^7.0.2",
|
|
157
|
+
"standard-version": "^9.5.0",
|
|
151
158
|
"tslib": "^2.6.2",
|
|
152
159
|
"typescript": "^5.4.5",
|
|
153
160
|
"vitest": "^3.2.4"
|