SIGN IN SIGN UP
oramasearch / orama UNCLAIMED

🌌 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.

0 0 0 TypeScript
2022-05-10 14:27:04 +02:00
{
"name": "orama-monorepo",
2024-04-16 17:46:25 -07:00
"version": "2.0.16",
2023-08-12 18:19:01 +02:00
"description": "Next generation full-text and vector search engine, written in TypeScript",
"workspaces": [
"packages/*",
"sandboxes/*"
],
2022-05-10 14:27:04 +02:00
"scripts": {
"build": "turbo build",
"format": "biome format --write ./packages",
"format:hook": "biome format --write --no-errors-on-unmatched ./packages",
"lint": "turbo lint",
"test": "turbo test",
"commit": "turbo lint && pnpm lint-staged && cz",
"prepare": "husky install .husky",
2023-03-31 17:22:37 +02:00
"publish-packages": "node scripts/release.mjs"
2022-05-10 15:18:21 +02:00
},
2022-05-10 14:27:04 +02:00
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@swc/cli": "^0.1.59",
"@swc/core": "^1.3.27",
2023-12-18 19:34:48 +05:30
"@types/node": "^20.9.0",
"@types/tap": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"c8": "^7.12.0",
"commitizen": "^4.2.6",
"eslint": "^8.48.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
2023-03-31 17:22:37 +02:00
"semver": "^7.3.8",
"simple-git": "^3.17.0",
2023-12-18 19:34:48 +05:30
"tap": "^18.6.1",
"tap-mocha-reporter": "^5.0.3",
"tape": "^5.6.1",
"tcompare": "^6.0.0",
"tsx": "^3.12.1",
"turbo": "^1.8.5",
"typescript": "^5.0.0"
},
"author": {
"name": "Michele Riva",
"email": "michele.riva@oramasearch.com",
"url": "https://github.com/MicheleRiva",
"author": true
},
"contributors": [
{
2024-02-15 23:21:29 +01:00
"name": "Tommaso Allevi",
"email": "tommaso.allevi@oramasearch.com",
"url": "https://github.com/allevo",
"author": true
}
],
"license": "Apache-2.0",
"lint-staged": {
"*": [
"pnpm format:hook"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"@babel/plugin-syntax-flow",
"@babel/plugin-transform-react-jsx",
"algoliasearch",
"eslint",
"typescript"
]
}
},
"engines": {
"node": ">= 16.0.0"
2022-05-10 14:27:04 +02:00
}
2023-11-14 10:24:11 +01:00
}