forked from emersonbottero/vitepress-plugin-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "kagi-sidekick-vitepress",
"version": "0.0.1-alpha.19",
"description": "Provide search using Sidekick to your documentation site.",
"types": "./dist/types/src/index.d.ts",
"files": [
"dist"
],
"main": "./dist/vitepress-plugin-search.umd.js",
"module": "./dist/vitepress-plugin-search.es.mjs",
"exports": {
".": {
"import": "./dist/vitepress-plugin-search.es.mjs",
"require": "./dist/vitepress-plugin-search.umd.js"
},
"./Search.vue": "./dist/Search.vue"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"postbuild": "vue-tsc --emitDeclarationOnly",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": "^14.13.1 || ^16.7.0 || >=18"
},
"keywords": [
"vitepress",
"search",
"offline"
],
"author": "Ben Hong",
"license": "MIT",
"peerDependencies": {
"flexsearch": "^0.7.43",
"vitepress": "^1.6.3",
"vue": "3"
},
"devDependencies": {
"@mdit-vue/shared": "^0.11.2",
"@types/glob-to-regexp": "^0.4.4",
"@types/node": "18.8.0",
"vite": "^6.2.2",
"vite-plugin-static-copy": "^2.3.0",
"vue-tsc": "^2.2.8"
},
"dependencies": {
"@types/flexsearch": "^0.7.42",
"@types/markdown-it": "^12.2.3",
"@vue/runtime-dom": "^3.4.3",
"glob-to-regexp": "^0.4.1",
"markdown-it": "^13.0.2"
}
}