-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
69 lines (69 loc) · 1.97 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
{
"name": "docusaurus-theme-search-typesense",
"version": "0.23.0-0",
"description": "Typesense 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-typesense.d.ts",
"default": "./lib/index.js"
}
},
"types": "src/theme-search-typesense.d.ts",
"publishConfig": {
"access": "public"
},
"repository": "typesense/docusaurus-theme-search-typesense",
"license": "MIT",
"scripts": {
"build": "tsc --build && node copyUntypedFiles.mjs && prettier --config .prettierrc --write \"src/**/*.{js,ts,tsx,css}\"",
"watch": "run-p -c copy:watch build:watch",
"build:watch": "tsc --build --watch",
"copy:watch": "node copyUntypedFiles.mjs --watch",
"test": "echo 'No Tests Founds'"
},
"dependencies": {
"@docusaurus/core": "3.6.0",
"@docusaurus/logger": "3.6.0",
"@docusaurus/plugin-content-docs": "3.6.0",
"@docusaurus/theme-common": "3.6.0",
"@docusaurus/theme-translations": "3.6.0",
"@docusaurus/utils": "3.6.0",
"@docusaurus/utils-validation": "3.6.0",
"algoliasearch-helper": "^3.13.3",
"clsx": "^2.0.0",
"eta": "^2.2.0",
"fs-extra": "^11.1.1",
"lodash": "^4.17.21",
"tslib": "^2.6.0",
"typesense-docsearch-react": "^3.4.1",
"typesense-instantsearch-adapter": "^2.9.0-5",
"utility-types": "^3.10.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.6.0",
"@docusaurus/types": "3.6.0",
"@types/fs-extra": "^11.0.0",
"@types/lodash": "^4.14.182",
"@types/react-dom": "^18.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"typescript": "~5.6.2"
},
"peerDependencies": {
"@docusaurus/core": "3.6.0",
"@docusaurus/theme-common": "3.6.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"engines": {
"node": ">=18"
}
}