2022-05-10 14:27:04 +02:00
{
2023-03-21 17:49:57 +01: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" ,
2023-03-21 17:49:57 +01:00
"workspaces" : [
2023-12-13 14:34:45 +01:00
"packages/*" ,
"sandboxes/*"
2022-09-07 14:05:45 +02:00
] ,
2022-05-10 14:27:04 +02:00
"scripts" : {
2023-03-21 17:49:57 +01:00
"build" : "turbo build" ,
2023-12-11 13:45:57 +00:00
"format" : "biome format --write ./packages" ,
"format:hook" : "biome format --write --no-errors-on-unmatched ./packages" ,
2023-03-21 17:49:57 +01:00
"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" : {
2024-04-05 18:46:43 +02:00
"@biomejs/biome" : "1.6.4" ,
2023-03-21 17:49:57 +01:00
"@swc/cli" : "^0.1.59" ,
"@swc/core" : "^1.3.27" ,
2023-12-18 19:34:48 +05:30
"@types/node" : "^20.9.0" ,
2022-09-05 12:23:09 +02:00
"@types/tap" : "^15.0.7" ,
2023-09-18 22:48:06 -03:00
"@typescript-eslint/eslint-plugin" : "^6.4.1" ,
"@typescript-eslint/parser" : "^6.4.1" ,
2022-09-05 12:23:09 +02:00
"c8" : "^7.12.0" ,
2023-01-09 11:12:24 +01:00
"commitizen" : "^4.2.6" ,
2023-09-18 22:48:06 -03:00
"eslint" : "^8.48.0" ,
"eslint-plugin-import" : "^2.28.1" ,
"eslint-plugin-n" : "^16.0.2" ,
2023-01-09 11:12:24 +01:00
"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" ,
2023-01-12 11:26:09 +01:00
"tap-mocha-reporter" : "^5.0.3" ,
"tape" : "^5.6.1" ,
"tcompare" : "^6.0.0" ,
2023-01-09 11:12:24 +01:00
"tsx" : "^3.12.1" ,
2023-03-21 17:49:57 +01:00
"turbo" : "^1.8.5" ,
2023-09-18 22:48:06 -03:00
"typescript" : "^5.0.0"
2022-05-17 10:33:32 +02:00
} ,
2023-03-21 17:49:57 +01:00
"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" ,
2023-03-21 17:49:57 +01:00
"author" : true
}
] ,
"license" : "Apache-2.0" ,
"lint-staged" : {
"*" : [
2023-12-11 13:45:57 +00:00
"pnpm format:hook"
2023-03-21 17:49:57 +01:00
]
} ,
"config" : {
"commitizen" : {
"path" : "cz-conventional-changelog"
}
} ,
2022-05-17 10:33:32 +02:00
"pnpm" : {
"peerDependencyRules" : {
"ignoreMissing" : [
2023-03-21 17:49:57 +01:00
"@algolia/client-search" ,
"@babel/plugin-syntax-flow" ,
"@babel/plugin-transform-react-jsx" ,
"algoliasearch" ,
"eslint" ,
2022-05-17 10:33:32 +02:00
"typescript"
]
}
2023-01-09 11:12:24 +01:00
} ,
"engines" : {
"node" : ">= 16.0.0"
2022-05-10 14:27:04 +02:00
}
2023-11-14 10:24:11 +01:00
}