-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
71 lines (71 loc) · 1.76 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
{
"name": "typedoc-plugin-mermaid",
"version": "1.12.0",
"description": "A plugin for TypeDoc that generates graphs for mermaid.js diagrams by using @mermaid annotation.",
"main": "./dist/typedoc-plugin-mermaid.js",
"module": "./dist/typedoc-plugin-mermaid.mjs",
"exports": {
".": {
"import": "./dist/typedoc-plugin-mermaid.mjs",
"require": "./dist/typedoc-plugin-mermaid.js"
},
"./package.json": "./package.json",
"./tsdoc.json": "./tsdoc.json"
},
"repository": {
"type": "git",
"url": "https://github.com/kamiazya/typedoc-plugin-mermaid.git"
},
"bugs": {
"url": "https://github.com/kamiazya/typedoc-plugin-mermaid/issues"
},
"homepage": "https://kamiazya.github.io/typedoc-plugin-mermaid/",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/kamiazya"
},
"author": "kamiazya <yuki@kamiazya.tech>",
"license": "MIT",
"keywords": [
"typedoc",
"typedocplugin",
"mermaid",
"graph",
"diagram"
],
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"tsdoc.json"
],
"publishConfig": {
"provenance": true
},
"packageManager": "pnpm@9.3.0",
"scripts": {
"format": "biome check --write .",
"lint": "biome ci .",
"typecheck": "tsc --noEmit",
"build": "vite build",
"test": "vitest"
},
"dependencies": {
"html-escaper": "^3.0.3"
},
"peerDependencies": {
"typedoc": ">=0.23.0 || 0.24.x || 0.25.x || 0.26.x"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"@types/html-escaper": "^3.0.0",
"@types/node": "^20.14.2",
"typedoc": "^0.26.3",
"typescript": "^5.4.5",
"vite": "^5.2.13",
"vitest": "^1.6.0"
}
}