-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.18 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
{
"name": "@oramacloud/plugin-strapi",
"version": "2.0.1",
"description": "A Strapi plugin to integrate Orama Cloud's search and answers engine, providing seamless search capabilities within your Strapi application.",
"keywords": ["strapi", "plugin", "search", "answers", "orama", "cloud"],
"license": "MIT",
"author": {
"name": "Orama"
},
"type": "commonjs",
"maintainers": [
{
"name": "Orama"
}
],
"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"],
"scripts": {
"build": "rm -rf dist && strapi-plugin build",
"postbuild": "rm -rf dist/server && webpack",
"watch:server": "rm -rf dist/server && webpack -w",
"test": "jest --collect-coverage",
"format": "biome format --write .",
"release": "pnpm build && pnpm publish"
},
"dependencies": {
"@oramacloud/client": "^2.1.4",
"@strapi/design-system": "^2.0.0-rc.14",
"@strapi/icons": "^2.0.0-rc.14",
"react-intl": "^7.0.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@biomejs/biome": "^1.9.1",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"jest": "^29.7.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"@strapi/sdk-plugin": ">= 5.x",
"@strapi/strapi": "^5.0.0 || ^5.0.0-beta || ^5.0.0-alpha || ^5.0.0-rc",
"luxon": ">= 3.5.0",
"react": ">= 18.x",
"react-dom": ">= 18.x",
"react-router-dom": ">= 6.x",
"styled-components": "^6.1.13"
},
"strapi": {
"name": "orama-cloud",
"description": "A Strapi plugin to integrate Orama Cloud's search and answers engine, providing seamless search capabilities within your Strapi application.",
"kind": "plugin",
"displayName": "Orama Cloud"
}
}