diff --git a/README.md b/README.md index 333210409..57969d595 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@
- - + +
[![Tests](https://github.com/oramasearch/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/oramasearch/orama/actions/workflows/turbo.yml) @@ -54,8 +54,8 @@ Read the complete documentation at [https://docs.orama.com](https://docs.orama.c # Orama Features- - + +
# Usage diff --git a/packages/docs/astro.config.mjs b/packages/docs/astro.config.mjs index 6c484e7a8..6d5ebdb17 100644 --- a/packages/docs/astro.config.mjs +++ b/packages/docs/astro.config.mjs @@ -34,9 +34,9 @@ export default defineConfig({ favicon: '/favicon.png', head: head, social: { - github: 'https://github.com/askorama/orama', + github: 'https://github.com/oramasearch/orama', slack: 'https://orama.to/slack', - twitter: 'https://x.com/askorama', + twitter: 'https://x.com/oramasearch', }, customCss: ['./src/tailwind.css', './src/styles/custom.css'], logo: { @@ -58,7 +58,7 @@ export default defineConfig({ ...openSourceMenu, ], editLink: { - baseUrl: 'https://github.com/askorama/orama/edit/main/packages/docs' + baseUrl: 'https://github.com/oramasearch/orama/edit/main/packages/docs' } }), react(), diff --git a/packages/docs/config/menu/orama-cloud.ts b/packages/docs/config/menu/orama-cloud.ts index 4a58e5141..bae0592df 100644 --- a/packages/docs/config/menu/orama-cloud.ts +++ b/packages/docs/config/menu/orama-cloud.ts @@ -264,7 +264,7 @@ const oramaCloudMenu = [ }, { label: 'Github repository', - link: 'https://github.com/askorama/orama' + link: 'https://github.com/oramasearch/orama' } ] } diff --git a/packages/docs/src/content/docs/cloud/integrating-orama-cloud/official-sdk.mdx b/packages/docs/src/content/docs/cloud/integrating-orama-cloud/official-sdk.mdx index d82ed7d1f..b686efd82 100644 --- a/packages/docs/src/content/docs/cloud/integrating-orama-cloud/official-sdk.mdx +++ b/packages/docs/src/content/docs/cloud/integrating-orama-cloud/official-sdk.mdx @@ -16,13 +16,13 @@ Some features may not be available in all SDKs yet. | Package | Search Engine | Answer Engine | Index Manager | |----------------------------------------------------------------------|---------------------|--------------------|---------------------| -| [Client JavaScript](https://github.com/askorama/oramacloud-client) |- +
[![Tests](https://github.com/oramasearch/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/oramasearch/orama/actions/workflows/turbo.yml) @@ -53,7 +53,7 @@ Read the complete documentation at [https://docs.orama.com](https://docs.orama.c # Orama Features- +
# Usage diff --git a/packages/orama/package.json b/packages/orama/package.json index 5788e289c..504e22637 100644 --- a/packages/orama/package.json +++ b/packages/orama/package.json @@ -86,10 +86,10 @@ ], "repository": { "type": "git", - "url": "https://github.com/askorama/orama" + "url": "https://github.com/oramasearch/orama" }, "bugs": { - "url": "https://github.com/askorama/orama" + "url": "https://github.com/oramasearch/orama" }, "scripts": { "benchmark": "node ../../benchmarks/index.js", diff --git a/packages/orama/src/components/sorter.ts b/packages/orama/src/components/sorter.ts index d78663943..8a9f272fc 100644 --- a/packages/orama/src/components/sorter.ts +++ b/packages/orama/src/components/sorter.ts @@ -141,7 +141,7 @@ function insert(sorter: Sorter, prop: string, id: DocumentID, value: SortValue): // Because we re-use the same internalId // We need to clean-up the data structure before re-inserting // to avoid duplicates in the orderedDocs array - // See: https://github.com/askorama/orama/issues/629 + // See: https://github.com/oramasearch/orama/issues/629 if (s.orderedDocsToRemove.has(internalId)) { ensureOrderedDocsAreDeletedByProperty(sorter, prop) } diff --git a/packages/orama/src/trees/radix.ts b/packages/orama/src/trees/radix.ts index b1ff9efc9..2c58d38c3 100644 --- a/packages/orama/src/trees/radix.ts +++ b/packages/orama/src/trees/radix.ts @@ -57,7 +57,7 @@ export class RadixNode { // check if _output[w] exists and then add the doc to it // always check in own property to prevent access to inherited properties - // fix https://github.com/askorama/orama/issues/137 + // fix https://github.com/oramasearch/orama/issues/137 if (getOwnProperty(output, w) !== null) { if (tolerance) { const difference = Math.abs(term.length - w.length) @@ -74,7 +74,7 @@ export class RadixNode { // check if _output[w] exists and then add the doc to it // always check in own property to prevent access to inherited properties - // fix https://github.com/askorama/orama/issues/137 + // fix https://github.com/oramasearch/orama/issues/137 if (getOwnProperty(output, w) != null && docIDs.size > 0) { const docs = output[w] for (const docID of docIDs) { diff --git a/packages/orama/src/utils.ts b/packages/orama/src/utils.ts index e7695061e..b41a3edf0 100644 --- a/packages/orama/src/utils.ts +++ b/packages/orama/src/utils.ts @@ -19,7 +19,7 @@ export const isServer = typeof window === 'undefined' export const MAX_ARGUMENT_FOR_STACK = 65535 /** - * This method is needed to used because of issues like: https://github.com/askorama/orama/issues/301 + * This method is needed to used because of issues like: https://github.com/oramasearch/orama/issues/301 * that issue is caused because the array that is pushed is huge (>100k) * * @example diff --git a/packages/orama/tests/dataset.test.ts b/packages/orama/tests/dataset.test.ts index d923d9b3e..2bdf41f3c 100644 --- a/packages/orama/tests/dataset.test.ts +++ b/packages/orama/tests/dataset.test.ts @@ -96,7 +96,7 @@ t.test('orama.dataset', async (t) => { t.end() }) - // Tests for https://github.com/askorama/orama/issues/159 + // Tests for https://github.com/oramasearch/orama/issues/159 t.test('should correctly search long strings', async (t) => { const s1 = await search(db, { term: 'e into the', diff --git a/packages/orama/tests/levenshtein.test.ts b/packages/orama/tests/levenshtein.test.ts index 083238846..4163dfb93 100644 --- a/packages/orama/tests/levenshtein.test.ts +++ b/packages/orama/tests/levenshtein.test.ts @@ -182,7 +182,7 @@ t.test('syncBoundedLevenshtein substrings are ok even if with tolerance pppppp', t.end() }) -// Test cases for https://github.com/askorama/orama/issues/744 +// Test cases for https://github.com/oramasearch/orama/issues/744 t.test('Issue #744', async (t) => { const index = await create({ schema: { @@ -239,7 +239,7 @@ t.test('Issue #744', async (t) => { t.strictSame(s4.hits.map(h => h.id), ['3', '4', '1', '2']) }) -// https://github.com/askorama/orama/issues/797 +// https://github.com/oramasearch/orama/issues/797 t.test('Issue #797', async t => { const db = await create({ schema: { diff --git a/packages/orama/tests/main.test.ts b/packages/orama/tests/main.test.ts index a4a69760b..d6d1dc24b 100644 --- a/packages/orama/tests/main.test.ts +++ b/packages/orama/tests/main.test.ts @@ -154,7 +154,7 @@ t.test('should search numbers in supported languages', async (t) => { t.end() }) -// Tests for https://github.com/askorama/orama/issues/230 +// Tests for https://github.com/oramasearch/orama/issues/230 t.test('should correctly search accented words in Italian', async (t) => { const db = await create({ schema: { @@ -175,7 +175,7 @@ t.test('should correctly search accented words in Italian', async (t) => { t.equal(searchResult.count, 1) }) -// Tests for https://github.com/askorama/orama/issues/230 +// Tests for https://github.com/oramasearch/orama/issues/230 t.test('should correctly search accented words in English', async (t) => { const db = await create({ schema: { @@ -196,7 +196,7 @@ t.test('should correctly search accented words in English', async (t) => { t.equal(searchResult.count, 1) }) -// Tests for https://github.com/askorama/orama/issues/230 +// Tests for https://github.com/oramasearch/orama/issues/230 t.test('should correctly search accented words in Dutch', async (t) => { const db = await create({ schema: { diff --git a/packages/orama/tests/remove.test.ts b/packages/orama/tests/remove.test.ts index 130be8a0e..8cd61fe02 100644 --- a/packages/orama/tests/remove.test.ts +++ b/packages/orama/tests/remove.test.ts @@ -96,7 +96,7 @@ t.test('remove method', (t) => { t.equal(r2_gt.hits[0].id, id2) }) - // Tests for https://github.com/askorama/orama/issues/52 + // Tests for https://github.com/oramasearch/orama/issues/52 t.test('should correctly remove documents via substring search', async (t) => { t.plan(1) @@ -271,7 +271,7 @@ t.test('should remove a document and update index field length', async (t) => { t.same((db.data.index as Index).avgFieldLength, avgFieldLength) }) -// Test cases for issue https://github.com/askorama/orama/issues/486 +// Test cases for issue https://github.com/oramasearch/orama/issues/486 t.test('should correctly remove documents with vector properties', async (t) => { t.plan(2) diff --git a/packages/orama/tests/search.test.ts b/packages/orama/tests/search.test.ts index 5963c1e47..efcc1947b 100644 --- a/packages/orama/tests/search.test.ts +++ b/packages/orama/tests/search.test.ts @@ -104,7 +104,7 @@ t.test('search method', async (t) => { t.equal(result5.count, 2) t.equal(result6.count, 4) - // Long string search (Tests for https://github.com/askorama/orama/issues/159 ) + // Long string search (Tests for https://github.com/oramasearch/orama/issues/159 ) const result7 = await search(db, { term: 'They are the best'}) const result8 = await search(db, { term: 'Foxes are nice animals'}) diff --git a/packages/orama/tests/sort.test.ts b/packages/orama/tests/sort.test.ts index e50de1137..19abfa19c 100644 --- a/packages/orama/tests/sort.test.ts +++ b/packages/orama/tests/sort.test.ts @@ -615,7 +615,7 @@ t.test('search with sortBy should be consistent ignoring the insert order', asyn t.end() }) -// https://github.com/askorama/orama/issues/629 +// https://github.com/oramasearch/orama/issues/629 t.test('sort should be consistent after update', async (t) => { const db = await create({ schema: { diff --git a/packages/orama/tests/type/issue_538.test-d.ts b/packages/orama/tests/type/issue_538.test-d.ts index d9c35603a..4fe2b4f6d 100644 --- a/packages/orama/tests/type/issue_538.test-d.ts +++ b/packages/orama/tests/type/issue_538.test-d.ts @@ -1,5 +1,5 @@ /* eslint-disable @typescript-eslint/no-unused-vars */ -// https://github.com/askorama/orama/issues/538 +// https://github.com/oramasearch/orama/issues/538 import { expectAssignable } from 'tsd' import { create, search } from '../../src/index.ts' diff --git a/packages/plugin-analytics/README.md b/packages/plugin-analytics/README.md index a96e28f50..2634a23ec 100644 --- a/packages/plugin-analytics/README.md +++ b/packages/plugin-analytics/README.md @@ -1,6 +1,6 @@ # Orama Analytics Plugin -[![Tests](https://github.com/askorama/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/askorama/orama/actions/workflows/turbo.yml) +[![Tests](https://github.com/oramasearch/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/oramasearch/orama/actions/workflows/turbo.yml) Official plugin to provide analytics data on your searches. diff --git a/packages/plugin-analytics/package.json b/packages/plugin-analytics/package.json index b9077e302..fcc38279a 100644 --- a/packages/plugin-analytics/package.json +++ b/packages/plugin-analytics/package.json @@ -15,12 +15,12 @@ } }, "bugs": { - "url": "https://github.com/askorama/orama/issues" + "url": "https://github.com/oramasearch/orama/issues" }, - "homepage": "https://github.com/askorama/orama#readme", + "homepage": "https://github.com/oramasearch/orama#readme", "repository": { "type": "git", - "url": "git+https://github.com/askorama/orama.git" + "url": "git+https://github.com/oramasearch/orama.git" }, "sideEffects": false, "types": "./dist/index.d.ts", diff --git a/packages/plugin-astro/README.md b/packages/plugin-astro/README.md index a0f8c4824..c81f5edf1 100644 --- a/packages/plugin-astro/README.md +++ b/packages/plugin-astro/README.md @@ -1,8 +1,8 @@ # Orama's Astro Plugin -[![Tests](https://github.com/askorama/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/askorama/orama/actions/workflows/turbo.yml) +[![Tests](https://github.com/oramasearch/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/oramasearch/orama/actions/workflows/turbo.yml) -This package is a (still experimental) [Orama](https://askorama.com) integration for +This package is a (still experimental) [Orama](https://oramasearch.com) integration for [Astro](https://astro.build). ## Usage diff --git a/packages/plugin-astro/package.json b/packages/plugin-astro/package.json index 0b42ee854..fe39b626f 100644 --- a/packages/plugin-astro/package.json +++ b/packages/plugin-astro/package.json @@ -3,7 +3,7 @@ "description": "An Astro integration for Orama", "version": "3.0.1", "keywords": ["astro", "astro-component", "cms", "orama", "search"], - "repository": "https://github.com/askorama/orama", + "repository": "https://github.com/oramasearch/orama", "author": { "name": "Andres Correa Casablanca", "email": "andres.casablanca@nearform.com", diff --git a/packages/plugin-data-persistence/README.md b/packages/plugin-data-persistence/README.md index 8511be315..0be6146b7 100644 --- a/packages/plugin-data-persistence/README.md +++ b/packages/plugin-data-persistence/README.md @@ -1,6 +1,6 @@ # Data Persistence Plugin -[![Tests](https://github.com/askorama/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/askorama/orama/actions/workflows/turbo.yml) +[![Tests](https://github.com/oramasearch/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/oramasearch/orama/actions/workflows/turbo.yml) This plugin aims to provide data persistence capabilities to Orama. diff --git a/packages/plugin-docusaurus-v3/README.md b/packages/plugin-docusaurus-v3/README.md index b8dd1510b..3f26279e8 100644 --- a/packages/plugin-docusaurus-v3/README.md +++ b/packages/plugin-docusaurus-v3/README.md @@ -1,5 +1,5 @@ # Orama Plugin for Docusaurus v3 -[Plugin documentation](https://docs.askorama.ai/open-source/plugins/plugin-docusaurus) +[Plugin documentation](https://docs.oramasearch.ai/open-source/plugins/plugin-docusaurus) For Docusaurus v2, please refer to the [v2 branch.](https://www.npmjs.com/package/@orama/plugin-docusaurus) \ No newline at end of file diff --git a/packages/plugin-docusaurus-v3/package.json b/packages/plugin-docusaurus-v3/package.json index 18793bff2..4e5dd1703 100644 --- a/packages/plugin-docusaurus-v3/package.json +++ b/packages/plugin-docusaurus-v3/package.json @@ -5,12 +5,12 @@ "keywords": ["orama", "docusaurus"], "license": "Apache-2.0", "bugs": { - "url": "https://github.com/askorama/orama/issues" + "url": "https://github.com/oramasearch/orama/issues" }, "homepage": "https://docs.orama.com/cloud/data-sources/native-integrations/docusaurus", "repository": { "type": "git", - "url": "git+https://github.com/askorama/orama.git" + "url": "git+https://github.com/oramasearch/orama.git" }, "sideEffects": false, "main": "dist/index.js", diff --git a/packages/plugin-docusaurus/README.md b/packages/plugin-docusaurus/README.md index 7b882c728..fe87fc2e0 100644 --- a/packages/plugin-docusaurus/README.md +++ b/packages/plugin-docusaurus/README.md @@ -1,6 +1,6 @@ # Orama plugin for Docusaurus v2 -[![Tests](https://github.com/askorama/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/askorama/orama/actions/workflows/turbo.yml) +[![Tests](https://github.com/oramasearch/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/oramasearch/orama/actions/workflows/turbo.yml) ## Pre-requisites In order guarantee a correct functionality of the plugin, you need to have the `@docusaurus/core` at least in the version `2.4.3`. diff --git a/packages/plugin-docusaurus/package.json b/packages/plugin-docusaurus/package.json index ef808b4c4..04ec2b5d3 100644 --- a/packages/plugin-docusaurus/package.json +++ b/packages/plugin-docusaurus/package.json @@ -5,12 +5,12 @@ "keywords": ["orama", "docusaurus"], "license": "Apache-2.0", "bugs": { - "url": "https://github.com/askorama/orama/issues" + "url": "https://github.com/oramasearch/orama/issues" }, "homepage": "https://docs.orama.com/cloud/data-sources/native-integrations/docusaurus", "repository": { "type": "git", - "url": "git+https://github.com/askorama/orama.git" + "url": "git+https://github.com/oramasearch/orama.git" }, "sideEffects": false, "main": "dist/index.js", diff --git a/packages/plugin-embeddings/package.json b/packages/plugin-embeddings/package.json index 3c2f2fceb..ba4dde1a9 100644 --- a/packages/plugin-embeddings/package.json +++ b/packages/plugin-embeddings/package.json @@ -20,12 +20,12 @@ } }, "bugs": { - "url": "https://github.com/askorama/orama/issues" + "url": "https://github.com/oramasearch/orama/issues" }, - "homepage": "https://github.com/askorama/orama#readme", + "homepage": "https://github.com/oramasearch/orama#readme", "repository": { "type": "git", - "url": "git+https://github.com/askorama/orama.git" + "url": "git+https://github.com/oramasearch/orama.git" }, "sideEffects": false, "types": "./dist/index.d.ts", diff --git a/packages/plugin-match-highlight/package.json b/packages/plugin-match-highlight/package.json index d93a439d9..219417cdd 100644 --- a/packages/plugin-match-highlight/package.json +++ b/packages/plugin-match-highlight/package.json @@ -6,10 +6,10 @@ "license": "Apache-2.0", "repository": { "type": "git", - "url": "https://github.com/askorama/orama" + "url": "https://github.com/oramasearch/orama" }, "bugs": { - "url": "https://github.com/askorama/orama" + "url": "https://github.com/oramasearch/orama" }, "type": "module", "sideEffects": false, diff --git a/packages/plugin-nextra/README.md b/packages/plugin-nextra/README.md index 3093fdc03..0b0093e28 100644 --- a/packages/plugin-nextra/README.md +++ b/packages/plugin-nextra/README.md @@ -1,6 +1,6 @@ # Nextra Plugin -[![Tests](https://github.com/askorama/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/askorama/orama/actions/workflows/turbo.yml) +[![Tests](https://github.com/oramasearch/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/oramasearch/orama/actions/workflows/turbo.yml) Official plugin to provide search capabilities through Orama on any Nextra website! diff --git a/packages/plugin-nextra/package.json b/packages/plugin-nextra/package.json index 55a91cd7a..21291f071 100644 --- a/packages/plugin-nextra/package.json +++ b/packages/plugin-nextra/package.json @@ -7,12 +7,12 @@ "main": "./dist/index.js", "type": "module", "bugs": { - "url": "https://github.com/askorama/orama/issues" + "url": "https://github.com/oramasearch/orama/issues" }, - "homepage": "https://github.com/askorama/orama#readme", + "homepage": "https://github.com/oramasearch/orama#readme", "repository": { "type": "git", - "url": "git+https://github.com/askorama/orama.git" + "url": "git+https://github.com/oramasearch/orama.git" }, "sideEffects": false, "types": "./dist/index.d.ts", diff --git a/packages/plugin-nextra/src/components/OramaFoter.tsx b/packages/plugin-nextra/src/components/OramaFoter.tsx index 5c94519a3..b6dea80c2 100644 --- a/packages/plugin-nextra/src/components/OramaFoter.tsx +++ b/packages/plugin-nextra/src/components/OramaFoter.tsx @@ -6,7 +6,7 @@ export const OramaFooter = ({ results }) => {{results.count} result{results.count > 1 && 's'} found in {results.elapsed.formatted}. Powered by{' '} - + Orama
diff --git a/packages/plugin-parsedoc/README.md b/packages/plugin-parsedoc/README.md index e8cf05f2a..6f47116a2 100644 --- a/packages/plugin-parsedoc/README.md +++ b/packages/plugin-parsedoc/README.md @@ -1,6 +1,6 @@ # Parsedoc Plugin -[![Tests](https://github.com/askorama/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/askorama/orama/actions/workflows/turbo.yml) +[![Tests](https://github.com/oramasearch/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/oramasearch/orama/actions/workflows/turbo.yml) This plugin aims to generate an index for Orama from HTML files diff --git a/packages/plugin-parsedoc/package.json b/packages/plugin-parsedoc/package.json index 5ad34a9be..faee1e1c6 100644 --- a/packages/plugin-parsedoc/package.json +++ b/packages/plugin-parsedoc/package.json @@ -7,12 +7,12 @@ "license": "Apache-2.0", "repository": { "type": "git", - "url": "git+https://github.com/askorama/orama.git" + "url": "git+https://github.com/oramasearch/orama.git" }, "bugs": { - "url": "https://github.com/askorama/orama/issues" + "url": "https://github.com/oramasearch/orama/issues" }, - "homepage": "https://github.com/askorama/orama#readme", + "homepage": "https://github.com/oramasearch/orama#readme", "type": "module", "sideEffects": false, "main": "./dist/commonjs.cjs", diff --git a/packages/plugin-pt15/package.json b/packages/plugin-pt15/package.json index 0f0fdc61a..6d013cd7e 100644 --- a/packages/plugin-pt15/package.json +++ b/packages/plugin-pt15/package.json @@ -20,12 +20,12 @@ } }, "bugs": { - "url": "https://github.com/askorama/orama/issues" + "url": "https://github.com/oramasearch/orama/issues" }, - "homepage": "https://github.com/askorama/orama#readme", + "homepage": "https://github.com/oramasearch/orama#readme", "repository": { "type": "git", - "url": "git+https://github.com/askorama/orama.git" + "url": "git+https://github.com/oramasearch/orama.git" }, "sideEffects": false, "types": "./dist/index.d.ts", diff --git a/packages/plugin-qps/package.json b/packages/plugin-qps/package.json index 0c2d8d0af..2899483d2 100644 --- a/packages/plugin-qps/package.json +++ b/packages/plugin-qps/package.json @@ -20,12 +20,12 @@ } }, "bugs": { - "url": "https://github.com/askorama/orama/issues" + "url": "https://github.com/oramasearch/orama/issues" }, - "homepage": "https://github.com/askorama/orama#readme", + "homepage": "https://github.com/oramasearch/orama#readme", "repository": { "type": "git", - "url": "git+https://github.com/askorama/orama.git" + "url": "git+https://github.com/oramasearch/orama.git" }, "sideEffects": false, "types": "./dist/index.d.ts", diff --git a/packages/plugin-secure-proxy/README.md b/packages/plugin-secure-proxy/README.md index bc3b3abdb..b10c20f3a 100644 --- a/packages/plugin-secure-proxy/README.md +++ b/packages/plugin-secure-proxy/README.md @@ -1,6 +1,6 @@ # Orama Secure Proxy Plugin -[![Tests](https://github.com/askorama/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/askorama/orama/actions/workflows/turbo.yml) +[![Tests](https://github.com/oramasearch/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/oramasearch/orama/actions/workflows/turbo.yml) Orama plugin for generating embeddings and performing vector/hybrid search securely on the front-end. diff --git a/packages/plugin-secure-proxy/package.json b/packages/plugin-secure-proxy/package.json index 05a5d1df3..fe09a3eea 100644 --- a/packages/plugin-secure-proxy/package.json +++ b/packages/plugin-secure-proxy/package.json @@ -15,12 +15,12 @@ } }, "bugs": { - "url": "https://github.com/askorama/orama/issues" + "url": "https://github.com/oramasearch/orama/issues" }, - "homepage": "https://github.com/askorama/orama#readme", + "homepage": "https://github.com/oramasearch/orama#readme", "repository": { "type": "git", - "url": "git+https://github.com/askorama/orama.git" + "url": "git+https://github.com/oramasearch/orama.git" }, "sideEffects": false, "types": "./dist/index.d.ts", diff --git a/packages/plugin-vitepress/README.md b/packages/plugin-vitepress/README.md index 9e5f9b3ee..e9d20c972 100644 --- a/packages/plugin-vitepress/README.md +++ b/packages/plugin-vitepress/README.md @@ -1,6 +1,6 @@ # Vitepress Plugin -[![Tests](https://github.com/askorama/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/askorama/orama/actions/workflows/turbo.yml) +[![Tests](https://github.com/oramasearch/orama/actions/workflows/turbo.yml/badge.svg)](https://github.com/oramasearch/orama/actions/workflows/turbo.yml) Official plugin to provide search capabilities through Orama on any Vitepress website! diff --git a/packages/plugin-vitepress/package.json b/packages/plugin-vitepress/package.json index 7c3a736d6..01c4b8e5f 100644 --- a/packages/plugin-vitepress/package.json +++ b/packages/plugin-vitepress/package.json @@ -7,12 +7,12 @@ "main": "./dist/index.js", "type": "module", "bugs": { - "url": "https://github.com/askorama/orama/issues" + "url": "https://github.com/oramasearch/orama/issues" }, - "homepage": "https://github.com/askorama/orama#readme", + "homepage": "https://github.com/oramasearch/orama#readme", "repository": { "type": "git", - "url": "git+https://github.com/askorama/orama.git" + "url": "git+https://github.com/oramasearch/orama.git" }, "sideEffects": false, "types": "./dist/index.d.ts", diff --git a/packages/stemmers/package.json b/packages/stemmers/package.json index 182835e0b..f4f27fdfd 100644 --- a/packages/stemmers/package.json +++ b/packages/stemmers/package.json @@ -153,10 +153,10 @@ ], "repository": { "type": "git", - "url": "https://github.com/askorama/orama" + "url": "https://github.com/oramasearch/orama" }, "bugs": { - "url": "https://github.com/askorama/orama" + "url": "https://github.com/oramasearch/orama" }, "scripts": { "build": "node scripts/build.js", diff --git a/packages/stopwords/package.json b/packages/stopwords/package.json index f66fe8416..ece073f0f 100644 --- a/packages/stopwords/package.json +++ b/packages/stopwords/package.json @@ -168,10 +168,10 @@ ], "repository": { "type": "git", - "url": "https://github.com/askorama/orama" + "url": "https://github.com/oramasearch/orama" }, "bugs": { - "url": "https://github.com/askorama/orama" + "url": "https://github.com/oramasearch/orama" }, "scripts": { "build": "node scripts/build.js", diff --git a/packages/tokenizers/package.json b/packages/tokenizers/package.json index d2bdaa800..58f7db60b 100644 --- a/packages/tokenizers/package.json +++ b/packages/tokenizers/package.json @@ -22,10 +22,10 @@ "files": ["build"], "repository": { "type": "git", - "url": "https://github.com/askorama/orama" + "url": "https://github.com/oramasearch/orama" }, "bugs": { - "url": "https://github.com/askorama/orama" + "url": "https://github.com/oramasearch/orama" }, "scripts": { "build": "node ./scripts/build.mjs",