-
-
Notifications
You must be signed in to change notification settings - Fork 324
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8fdd4bb
commit 683f583
Showing
21 changed files
with
151 additions
and
65 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
{ | ||
"name": "orama-monorepo", | ||
"version": "3.0.8", | ||
"version": "3.1.0", | ||
"description": "A complete search engine and RAG pipeline in your browser, server, or edge network with support for full-text, vector, and hybrid search in less than 2kb.", | ||
"workspaces": ["packages/*", "sandboxes/*"], | ||
"workspaces": [ | ||
"packages/*", | ||
"sandboxes/*" | ||
], | ||
"scripts": { | ||
"build": "turbo build", | ||
"format": "biome format --write ./packages", | ||
|
@@ -55,7 +58,9 @@ | |
], | ||
"license": "Apache-2.0", | ||
"lint-staged": { | ||
"*": ["pnpm format:hook"] | ||
"*": [ | ||
"pnpm format:hook" | ||
] | ||
}, | ||
"config": { | ||
"commitizen": { | ||
|
@@ -78,4 +83,4 @@ | |
"node": ">= 16.0.0" | ||
}, | ||
"packageManager": "[email protected]+sha512.0bd3a9be9eb0e9a692676deec00a303ba218ba279d99241475616b398dbaeedd11146f92c2843458f557b1d127e09d4c171e105bdcd6b61002b39685a8016b9e" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@orama/plugin-data-persistence", | ||
"version": "3.0.8", | ||
"version": "3.1.0", | ||
"description": "Data persistence plugin for Orama", | ||
"type": "module", | ||
"sideEffects": false, | ||
|
@@ -20,14 +20,20 @@ | |
} | ||
}, | ||
"types": "./dist/index.d.ts", | ||
"files": ["dist"], | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"dev": "swc --delete-dir-on-start -s -w --extensions .ts,.cts -d dist src", | ||
"build": "swc --delete-dir-on-start --extensions .ts,.cts -d dist src", | ||
"postbuild": "sh scripts/postbuild.sh", | ||
"test": "c8 -c test/config/c8.json tap test/*.test.ts" | ||
}, | ||
"keywords": ["orama", "disk persistence", "full-text search"], | ||
"keywords": [ | ||
"orama", | ||
"disk persistence", | ||
"full-text search" | ||
], | ||
"author": { | ||
"email": "[email protected]", | ||
"name": "Michele Riva", | ||
|
@@ -60,4 +66,4 @@ | |
"tap": { | ||
"extends": "test/config/tap.yml" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.