-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "@rokmohar/medusa-plugin-meilisearch",
"version": "0.2.1",
"description": "Meilisearch plugin for Medusa 2",
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"author": "Rok Mohar",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rokmohar/medusa-plugin-meilisearch.git"
},
"scripts": {
"test": "jest --passWithNoTests src",
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.spec.ts",
"build": "rimraf dist && tsc --build ./tsconfig.json",
"watch": "tsc --watch"
},
"devDependencies": {
"@medusajs/types": "^2.2.0",
"axios": "^1.6.8",
"cross-env": "^5.2.1",
"jest": "^29.7.0",
"rimraf": "^5.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@medusajs/modules-sdk": "^2.2.0",
"@medusajs/utils": "^2.2.0",
"awilix": "^8.0.1",
"meilisearch": "^0.45.0"
},
"peerDependencies": {
"awilix": "^8.0.1"
},
"keywords": [
"medusa",
"meilisearch",
"medusa-plugin",
"medusa-plugin-meilisearch"
]
}