forked from oramasearch/orama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.26 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
{
"name": "lyra",
"version": "0.0.2",
"description": "",
"main": "index.js",
"workspaces": [
"packages/**"
],
"scripts": {
"test": "cd packages/lyra && pnpm test",
"changelog": "auto-changelog -p",
"commit": "pnpm lint-staged && cz",
"format": "prettier --write \"packages/**/*.{ts,js}\"",
"lint": "pnpm run format && eslint . --ext .js,.ts",
"prepare": "husky install",
"benchmark": "pnpm build:lyra && node ./packages/benchmarks/index.js",
"build:lyra": "cd packages/lyra && pnpm build"
},
"keywords": [],
"author": {
"name": "Michele Riva",
"email": "ciao@micheleriva.it",
"url": "https://github.com/MicheleRiva"
},
"license": "ISC",
"lint-staged": {
"*": "pnpm lint"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"auto-changelog": "^2.4.0",
"commitizen": "^4.2.5",
"eslint": "^8.20.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"typescript"
]
}
}
}