-
-
Notifications
You must be signed in to change notification settings - Fork 290
/
package.json
86 lines (86 loc) · 2.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "orama-monorepo",
"version": "3.0.1",
"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/*"
],
"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",
"publish-packages": "node scripts/release.mjs"
},
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@swc/cli": "^0.1.59",
"@swc/core": "^1.3.27",
"@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",
"semver": "^7.3.8",
"simple-git": "^3.17.0",
"tap": "^18.6.1",
"tap-mocha-reporter": "^5.0.3",
"tape": "^5.6.1",
"tcompare": "^6.0.0",
"tsx": "^3.12.1",
"turbo": "^2.1.3",
"typescript": "^5.0.0"
},
"author": {
"name": "Michele Riva",
"email": "[email protected]",
"url": "https://github.com/MicheleRiva",
"author": true
},
"contributors": [
{
"name": "Tommaso Allevi",
"email": "[email protected]",
"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"
},
"packageManager": "[email protected]+sha512.0bd3a9be9eb0e9a692676deec00a303ba218ba279d99241475616b398dbaeedd11146f92c2843458f557b1d127e09d4c171e105bdcd6b61002b39685a8016b9e"
}