forked from meilisearch/strapi-plugin-meilisearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.01 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": "strapi-plugin-meilisearch",
"version": "0.10.0",
"description": "Synchronise and search in your Strapi content-types with Meilisearch",
"scripts": {
"playground:dev": "yarn --cwd ./playground && yarn --cwd ./playground dev",
"playground:build": "yarn --cwd ./playground && yarn --cwd ./playground build",
"style": "eslint --ext .js,.test.js .",
"style:fix": "eslint --ext .js,.test.js . --fix",
"test": "jest --testPathPattern=tests",
"test:watch": "jest --watch --testPathPattern=tests --verbose"
},
"strapi": {
"name": "meilisearch",
"icon": "search",
"description": "Search in your content-types with the Meilisearch plugin",
"kind": "plugin"
},
"files": [
"admin",
"server",
"strapi-admin.js",
"strapi-server.js",
"LICENSE",
"README.md"
],
"dependencies": {
"@strapi/utils": "^4.14.4",
"@strapi/icons": "^1.12.2",
"@strapi/design-system": "^1.12.2",
"meilisearch": "^0.35.0"
},
"peerDependencies": {
"@strapi/strapi": "^4.0.0"
},
"author": {
"name": "Charlotte Vermandel <[email protected]>"
},
"maintainers": [
{
"name": "Charlotte Vermandel <[email protected]>"
}
],
"engines": {
"npm": ">=6.0.0"
},
"bugs": {
"url": "https://github.com/meilisearch/strapi-plugin-meilisearch/issues"
},
"keywords": [
"strapi",
"plugin",
"meilisearch",
"search"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/meilisearch/strapi-plugin-meilisearch.git"
},
"homepage": "https://github.com/meilisearch/strapi-plugin-meilisearch#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"concurrently": "^6.2.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.27.0",
"jest": "^27.4.3",
"prettier": "2.2.1"
}
}