-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
98 lines (98 loc) · 2.45 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "vitepress-jsdoc",
"version": "1.0.4",
"files": [
"dist"
],
"description": "A bridge between Vitepress and JSDoc-style commented codebases for hassle-free documentation.",
"scripts": {
"preversion": "npm test",
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags",
"old:preprepare": "rm -rf dist",
"postprepare": "node fixup.js",
"prepare": "tshy",
"pretest": "npm run prepare",
"presnap": "npm run prepare",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "xo",
"lint:fix": "xo --fix",
"dev": "vitepress dev docs",
"build": "vitepress build docs",
"preview": "vitepress preview docs",
"prebuild": "./dist/esm/bin.js --source ./dist/esm --dist ./docs --folder code --readme ./README.md --exclude=\"**/*.json,**/*.hbs,**/*.d.ts,**/*.map,**/interfaces.*\""
},
"keywords": [
"vitepress",
"jsdoc",
"documentation",
"plugin",
"integration",
"annotations",
"codebase",
"developer tools",
"static",
"vue"
],
"engines": {
"node": ">=14"
},
"funding": [
{
"type": "individual",
"url": "https://github.com/blakmatrix/vitepress-jsdoc?sponsor=1"
}
],
"license": "MIT",
"author": "Farrin Reid <blakmatrix@gmail.com>",
"repository": {
"url": "git+https://github.com/blakmatrix/vitepress-jsdoc.git",
"type": "git"
},
"devDependencies": {
"@types/jsdoc-to-markdown": "^7.0.4",
"@types/micromatch": "^4.0.3",
"@types/node": "^20.8.2",
"tshy": "^1.2.2",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitepress": "^1.0.0-rc.20",
"vitepress-sidebar": "^1.18.0",
"vitest": "^0.34.6",
"vue-docgen-cli": "^4.67.0",
"xo": "^0.56.0"
},
"dependencies": {
"chokidar": "^3.5.3",
"commander": "^11.0.0",
"front-matter": "^4.0.2",
"jsdoc-to-markdown": "^8.0.0",
"micromatch": "^4.0.5",
"mkdirp": "^3.0.1",
"rimraf": "^5.0.5"
},
"tshy": {
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"bin": {
"vitepress-jsdoc": "dist/esm/bin.js"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"type": "module"
}