-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
61 lines (61 loc) · 1.61 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
{
"name": "vitepress-plugin-search",
"version": "1.0.4-alpha.22",
"description": "Provide local search 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emersonbottero/vitepress-plugin-search.git"
},
"keywords": [
"vitepress",
"search",
"offline"
],
"author": "Emerson Bottero",
"license": "MIT",
"bugs": {
"url": "https://github.com/emersonbottero/vitepress-plugin-search/issues"
},
"homepage": "https://github.com/emersonbottero/vitepress-plugin-search#readme",
"peerDependencies": {
"flexsearch": "^0.7.31",
"vitepress": "^1.0.0-rc.35",
"vue": "3"
},
"devDependencies": {
"@mdit-vue/shared": "^0.11.0",
"@types/glob-to-regexp": "^0.4.1",
"@types/node": "18.8.0",
"vite": "^4.0.4",
"vite-plugin-static-copy": "^0.13.1",
"vue-tsc": "1"
},
"dependencies": {
"@types/flexsearch": "^0.7.3",
"@types/markdown-it": "^12.2.3",
"glob-to-regexp": "^0.4.1",
"markdown-it": "^13.0.1"
}
}