forked from Stuyk/vitepress-plugin-simple-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.54 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
{
"name": "vitepress-plugin-simple-search",
"version": "1.2.0",
"description": "A very simple offline search for your vitepress documentation.",
"author": "Stuyk",
"license": "MIT",
"types": "./dist/types/src/index.d.ts",
"files": [
"dist"
],
"main": "./dist/simple-search.umd.js",
"module": "./dist/simple-search.es.js",
"exports": {
".": {
"import": "./dist/simple-search.es.js",
"require": "./dist/simple-search.umd.js"
},
"./Search.vue": "./dist/Search.vue"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"postbuild": "vue-tsc --emitDeclarationOnly"
},
"engines": {
"node": "^14.13.1 || ^16.7.0 || >=18"
},
"homepage": "https://github.com/stuyk/vitepress-plugin-simple-search#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stuyk/vitepress-plugin-simple-search.git"
},
"bugs": {
"url": "https://github.com/stuyk/vitepress-plugin-simple-search/issues"
},
"keywords": [
"vitepress",
"search",
"simple",
"offline"
],
"peerDependencies": {
"vite": "2 || 3",
"vitepress": "^1.0.0-alpha.13",
"vue": "3"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/glob": "^8.0.0",
"@types/node": "^18.7.18",
"vite-plugin-static-copy": "^0.9.0",
"vue-tsc": "^0.40.5"
},
"dependencies": {
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"gray-matter": "^4.0.3"
},
"prettier": {
"tabWidth": 4,
"printWidth": 120,
"singleQuote": true,
"semi": true
}
}