-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.3 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
{
"name": "vitepress-plugin-helper",
"private": false,
"version": "1.0.5",
"description": "A VitePress plugin that helps generate nav and sidebars and watch MarkDown file changes to restart the service",
"type": "module",
"author": "PeiYanlu",
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "tsdown -w",
"build": "tsdown",
"prepublish": "tsdown",
"release": "release"
},
"dependencies": {
"fast-glob": "^3.3.3",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@peiyanlu/release": "^0.0.16",
"@types/node": "^24.12.4",
"typescript": "^6.0.3",
"vitepress": "^2.0.0-alpha.19",
"tsdown": "^0.22.14"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:peiyanlu/vitepress-plugin-helper.git"
},
"homepage": "https://github.com/peiyanlu/vitepress-plugin-helper/blob/master/README.md",
"bugs": {
"url": "https://github.com/peiyanlu/vitepress-plugin-helper/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"files": [
"dist"
],
"keywords": [
"vitepress",
"helper",
"sidebar",
"nav",
"auto"
],
"engines": {
"node": ">=20"
}
}