-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
108 lines (108 loc) · 3.22 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "strapi-plugin-meilisearch",
"version": "0.13.1",
"description": "Synchronise and search in your Strapi content-types with Meilisearch",
"scripts": {
"build": "strapi-plugin build",
"verify": "strapi-plugin verify",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"playground:dev": "yarn --cwd ./playground && yarn --cwd ./playground dev",
"playground:build": "yarn --cwd ./playground && yarn --cwd ./playground build",
"playground:ci": "yarn --cwd ./playground ci",
"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",
"test:e2e:watch": "concurrently --kill-others -s first \"NODE_ENV=test yarn playground:dev\" \"cypress open --env env=watch\""
},
"strapi": {
"name": "meilisearch",
"icon": "search",
"description": "Search in your content-types with the Meilisearch plugin",
"kind": "plugin"
},
"type": "commonjs",
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"source": "./admin/src/index.js",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"source": "./server/src/index.js",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist"
],
"dependencies": {
"@strapi/design-system": "^2.0.0-rc.14",
"@strapi/icons": "^2.0.0-rc.14",
"meilisearch": "^0.45.0"
},
"peerDependencies": {
"@strapi/sdk-plugin": "^5.2.7",
"@strapi/strapi": "^5.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@strapi/sdk-plugin": "^5.2.7",
"@strapi/strapi": "^5.4.1",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"concurrently": "^8.2.2",
"cypress": "^13.16.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.27.0",
"jest": "^29.7.0",
"prettier": "3.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"styled-components": "^6.1.13"
},
"author": {
"name": "Charlotte Vermandel <[email protected]>"
},
"maintainers": [
{
"name": "Charlotte Vermandel <[email protected]>"
}
],
"engines": {
"npm": ">=6.0.0",
"node": ">=18"
},
"bugs": {
"url": "https://github.com/meilisearch/strapi-plugin-meilisearch/issues"
},
"keywords": [
"strapi",
"plugin",
"meilisearch",
"search"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/meilisearch/strapi-plugin-meilisearch.git"
},
"homepage": "https://github.com/meilisearch/strapi-plugin-meilisearch#readme"
}