forked from oramasearch/orama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.3 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
{
"name": "@lyrasearch/lyra",
"version": "0.2.7",
"description": "Fast, in-memory, typo-tolerant, full-text search engine written in TypeScript",
"main": "./dist/cjs/src/lyra.js",
"module": "./dist/esm/src/lyra.js",
"browser": "./dist/browser/src/lyra.js",
"types": "./dist/esm/src/lyra.d.ts",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/lyrasearch/lyra"
},
"repositoy": {
"url": "https://github.com/lyrasearch/lyra"
},
"scripts": {
"changelog": "auto-changelog -p",
"commit": "pnpm lint-staged && cz",
"format": "prettier --write \"**/*.{ts,js}\"",
"lint": "pnpm run format && eslint . --ext .js,.ts",
"prepare": "husky install && npm run build",
"benchmark": "node --no-warnings benchmarks/src/typo-tolerant-search.mjs",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:module": "tsc --project tsconfig.esm.json",
"build:browser": "tsc --project tsconfig.browser.json",
"build": "rimraf ./dist && concurrently 'npm:build:module' 'npm:build:cjs' 'npm:build:browser'",
"test": "c8 -c tests/config/c8-local.json tap --rcfile=tests/config/tap.yml tests/*.test.ts",
"test:ci": "c8 -c tests/config/c8-ci.json tap --rcfile=tests/config/tap.yml --no-color tests/*.test.ts",
"test:smoke": "tap --rcfile=tests/config/tap.yml tests/smoke/*.test.ts",
"ci": "npm run build && npm run test:ci && npm run test:smoke"
},
"keywords": [],
"author": {
"name": "Michele Riva",
"email": "[email protected]",
"url": "https://github.com/MicheleRiva"
},
"license": "Apache-2.0",
"lint-staged": {
"*": "pnpm lint"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@types/node": "^18.6.2",
"@types/tap": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"auto-changelog": "^2.4.0",
"c8": "^7.12.0",
"commitizen": "^4.2.5",
"concurrently": "^7.3.0",
"cronometro": "^1.1.4",
"eslint": "^8.20.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"tap": "^16.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"typescript"
]
}
}
}