forked from typesense/docusaurus-theme-search-typesense
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.83 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.83 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
{
"name": "docusaurus-theme-search-typesense",
"version": "0.12.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"
},
"dependencies": {
"@docusaurus/logger": "2.4.1",
"@docusaurus/plugin-content-docs": "2.4.1",
"@docusaurus/theme-translations": "2.4.1",
"@docusaurus/utils": "2.4.1",
"@docusaurus/utils-validation": "2.4.1",
"algoliasearch-helper": "^3.10.0",
"clsx": "^1.2.1",
"eta": "^2.0.0",
"fs-extra": "^10.1.0",
"lodash": "^4.17.21",
"tslib": "^2.4.0",
"typesense-docsearch-react": "^3.4.0",
"typesense-instantsearch-adapter": "^2.6.0",
"utility-types": "^3.10.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "2.4.1",
"@docusaurus/types": "^2.4.1",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.182",
"@types/react-dom": "^18.0.6",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@docusaurus/core": "2.4.1",
"@docusaurus/theme-common": "2.4.1",
"react": "^16.8.4 || ^17.0.2",
"react-dom": "^16.8.4 || ^17.0.2"
},
"engines": {
"node": ">=16.14"
}
}