-
Notifications
You must be signed in to change notification settings - Fork 434
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.9 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.9 KB
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
{
"name": "@docsearch/docusaurus-adapter",
"version": "4.5.4",
"description": "Algolia search component for Docusaurus.",
"main": "lib/index.js",
"sideEffects": [
"*.css"
],
"exports": {
"./client": {
"types": "./lib/client/index.d.ts",
"default": "./lib/client/index.js"
},
".": {
"types": "./src/theme-search-algolia.d.ts",
"default": "./lib/index.js"
}
},
"types": "src/theme-search-algolia.d.ts",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/algolia/docsearch.git",
"directory": "adapters/docusaurus-theme-search-algolia"
},
"license": "MIT",
"scripts": {
"build": "yarn exec tsc --build --force && node ./scripts/copy-assets.mjs && node ./scripts/format-theme.mjs",
"build:clean": "yarn clean && yarn build",
"clean": "rm -rf lib tsconfig.*.tsbuildinfo",
"watch": "run-p -c copy:watch build:watch",
"build:watch": "yarn exec tsc --build --watch",
"copy:watch": "node ./scripts/copy-assets.mjs --watch"
},
"dependencies": {
"@docsearch/react": "^4.5.3",
"@docusaurus/core": "^3.9.2",
"@docusaurus/plugin-content-docs": "^3.9.2",
"@docusaurus/theme-common": "^3.9.2",
"@docusaurus/theme-translations": "^3.9.2",
"algoliasearch": "^5.37.0",
"algoliasearch-helper": "^3.26.0",
"clsx": "^2.0.0",
"eta": "^2.2.0",
"fs-extra": "^11.1.1",
"joi": "^17.9.2",
"lodash": "^4.17.21",
"tslib": "^2.6.0",
"utility-types": "^3.10.0"
},
"devDependencies": {
"@docusaurus/core": "^3.9.2",
"@docusaurus/module-type-aliases": "3.9.2",
"@docusaurus/theme-classic": "3.9.2",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.10",
"typescript": "5.7.3"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"engines": {
"node": ">=20.0"
}
}