-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "vitepress-plugin-auto-sidebar",
"repository": "git://github.com/JonathanSchndr/vitepress-plugin-auto-sidebar.git",
"version": "1.2.0",
"description": "Generate the VitePress sidebar through the folder structure.",
"types": "./dist/types/src/index.d.ts",
"files": [
"dist"
],
"type": "module",
"main": "./dist/vitepress-plugin-auto-sidebar.umd.cjs",
"module": "./dist/vitepress-plugin-auto-sidebar.js",
"exports": {
".": {
"import": "./dist/vitepress-plugin-auto-sidebar.js",
"require": "./dist/vitepress-plugin-auto-sidebar.umd.cjs"
}
},
"scripts": {
"build": "vite build",
"postbuild": "vue-tsc --emitDeclarationOnly"
},
"engines": {
"node": ">=18"
},
"keywords": [
"vitepress",
"auto",
"sidebar"
],
"author": "Jonathan Schneider",
"license": "MIT",
"bugs": {
"url": "https://github.com/JonathanSchndr/vitepress-plugin-auto-sidebar/issues"
},
"homepage": "https://github.com/JonathanSchndr/vitepress-plugin-auto-sidebar#readme",
"devDependencies": {
"@types/node": "^20.12.3",
"vite": "^5.2.8",
"vue-tsc": "^2.0.7"
},
"dependencies": {
"front-matter": "^4.0.2"
}
}