@soulcraft/brainy 0.9.34 → 0.9.35
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/CHANGELOG.md +16 -0
- package/README.md +3 -3
- package/dist/brainy.js +2 -2
- package/dist/brainy.min.js +1 -1
- package/dist/unified.js +2 -2
- package/dist/unified.min.js +1 -1
- package/dist/utils/tensorflowUtils.d.ts.map +1 -1
- package/dist/utils/version.d.ts +1 -1
- package/package.json +14 -13
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tensorflowUtils.d.ts","sourceRoot":"","sources":["../../src/utils/tensorflowUtils.ts"],"names":[],"mappings":"AAAA;;;;GAIG;
|
|
1
|
+
{"version":3,"file":"tensorflowUtils.d.ts","sourceRoot":"","sources":["../../src/utils/tensorflowUtils.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAuDH;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,GAAG,EAAE,OAAO,GAAG,OAAO,CAKpD;AAED;;;;GAIG;AACH,wBAAgB,YAAY,CAAC,GAAG,EAAE,OAAO,GAAG,OAAO,CAElD"}
|
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.35",
|
|
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",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"engines": {
|
|
28
|
-
"node": ">=
|
|
28
|
+
"node": ">=24.3.0"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"prebuild": "node scripts/generate-version.js",
|
|
@@ -44,8 +44,8 @@
|
|
|
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
|
-
"deploy": "npm run build && npm publish",
|
|
48
|
-
"deploy:cli": "node scripts/generate-version.js && cd cli-package && npm run build && npm publish",
|
|
47
|
+
"deploy": "npm run build && npm publish && node scripts/create-github-release.js",
|
|
48
|
+
"deploy:cli": "node scripts/generate-version.js && cd cli-package && npm run build && npm publish && node ../scripts/create-github-release.js",
|
|
49
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",
|
|
@@ -93,6 +93,7 @@
|
|
|
93
93
|
"dist/utils/",
|
|
94
94
|
"LICENSE",
|
|
95
95
|
"README.md",
|
|
96
|
+
"CHANGELOG.md",
|
|
96
97
|
"brainy.png"
|
|
97
98
|
],
|
|
98
99
|
"devDependencies": {
|
|
@@ -101,18 +102,18 @@
|
|
|
101
102
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
102
103
|
"@rollup/plugin-replace": "^5.0.5",
|
|
103
104
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
104
|
-
"@types/node": "^20.
|
|
105
|
+
"@types/node": "^20.11.30",
|
|
105
106
|
"@types/uuid": "^10.0.0",
|
|
106
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
107
|
-
"@typescript-eslint/parser": "^
|
|
108
|
-
"eslint": "^8.
|
|
109
|
-
"rollup": "^4.
|
|
107
|
+
"@typescript-eslint/eslint-plugin": "^7.4.0",
|
|
108
|
+
"@typescript-eslint/parser": "^7.4.0",
|
|
109
|
+
"eslint": "^8.57.0",
|
|
110
|
+
"rollup": "^4.13.0",
|
|
110
111
|
"rollup-plugin-terser": "^7.0.2",
|
|
111
|
-
"tslib": "^2.
|
|
112
|
-
"typescript": "^5.
|
|
112
|
+
"tslib": "^2.6.2",
|
|
113
|
+
"typescript": "^5.4.5"
|
|
113
114
|
},
|
|
114
115
|
"dependencies": {
|
|
115
|
-
"@aws-sdk/client-s3": "^3.
|
|
116
|
+
"@aws-sdk/client-s3": "^3.540.0",
|
|
116
117
|
"@tensorflow-models/universal-sentence-encoder": "^1.3.3",
|
|
117
118
|
"@tensorflow/tfjs": "^4.22.0",
|
|
118
119
|
"@tensorflow/tfjs-backend-cpu": "^4.22.0",
|
|
@@ -120,7 +121,7 @@
|
|
|
120
121
|
"@tensorflow/tfjs-converter": "^4.22.0",
|
|
121
122
|
"@tensorflow/tfjs-core": "^4.22.0",
|
|
122
123
|
"buffer": "^6.0.3",
|
|
123
|
-
"uuid": "^9.0.
|
|
124
|
+
"uuid": "^9.0.1"
|
|
124
125
|
},
|
|
125
126
|
"prettier": {
|
|
126
127
|
"arrowParens": "always",
|