-
-
Notifications
You must be signed in to change notification settings - Fork 326
/
Copy pathpackage.json
64 lines (64 loc) · 1.92 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
{
"name": "@orama/plugin-docusaurus",
"version": "3.1.0",
"description": "Docusaurus plugin for local search powered by Orama",
"keywords": [
"orama",
"docusaurus"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/oramasearch/orama/issues"
},
"homepage": "https://docs.orama.com/cloud/data-sources/native-integrations/docusaurus",
"repository": {
"type": "git",
"url": "git+https://github.com/oramasearch/orama.git"
},
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"postbuild": "sh scripts/postbuild.sh",
"pretest": "node ../../scripts/test-pack.mjs plugin-docusaurus",
"test": "echo \"Docusaurus v2 will become unmaintained soon. Use Docusaurus v3.\" # node --loader=tsx --no-warnings=loader --test ./test/integration.ts | tap-mocha-reporter spec",
"format": "prettier -w src",
"lint": "eslint src --ext .js,.ts,.tsx,.cts",
"changelog": "auto-changelog -p",
"watch": "tsc --watch"
},
"dependencies": {
"@orama/highlight": "^0.1.5",
"@orama/orama": "workspace:*",
"@orama/react-components": "^0.0.28",
"@orama/plugin-analytics": "workspace:*",
"@orama/plugin-parsedoc": "workspace:*",
"@orama/switch": "workspace:*",
"@oramacloud/client": "^1.3.16",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"jsdom": "^23.2.0",
"markdown-it": "^13.0.2",
"pako": "^2.1.0",
"tslib": "^2.6.2",
"vfile-message": "^3.1.4"
},
"devDependencies": {
"@types/jsdom": "^21.1.6",
"@types/markdown-it": "^13.0.7",
"@types/pako": "^2.0.3",
"typescript": "^5.6.3"
},
"peerDependencies": {
"@docusaurus/plugin-content-docs": "2.x",
"@docusaurus/theme-common": "2.x",
"@docusaurus/types": "2.x",
"@docusaurus/utils": "2.x",
"react": "17.x",
"react-dom": "17.x"
},
"publishConfig": {
"access": "public"
}
}