-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.11 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
{
"name": "meilisearch-helper",
"version": "1.3.0",
"description": "A helper library for meilisearch-js that provides convenient utility methods to simplify common operations and enhance your Meilisearch experience.",
"keywords": [
"meilisearch",
"sort",
"filter",
"builder",
"helper",
"utility",
"meilisearch-js"
],
"author": "codytseng",
"homepage": "https://github.com/CodyTseng/meilisearch-helper",
"license": "MIT",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CodyTseng/meilisearch-helper.git"
},
"bugs": {
"url": "https://github.com/CodyTseng/meilisearch-helper/issues"
},
"scripts": {
"test": "jest",
"lint": "eslint src",
"lint:check": "eslint --max-warnings 0 src",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"jest": "^29.7.0",
"prettier": "3.4.2"
},
"jest": {
"collectCoverage": true
}
}