-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.56 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
{
"name": "gatsby-remark-plantuml-lite",
"version": "0.3.2",
"description": "A Gatsby plugin to transform PlantUML code blocks into SVG images",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/mogeko/gatsby-remark-plantuml-lite",
"repository": "[email protected]:mogeko/gatsby-remark-plantuml-lite.git",
"bugs": {
"url": "https://github.com/mogeko/gatsby-remark-plantuml-lite/issues",
"email": "[email protected]"
},
"author": "Mogeko <[email protected]>",
"license": "MIT",
"keywords": [
"gatsby",
"gatsby-plugin",
"remark",
"plantuml"
],
"files": [
"dist/*",
"gatsby-node.js"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist coverage",
"release": "yarn build && yarn npm publish",
"lint": "biome check",
"fmt": "biome check --write",
"test": "vitest run",
"cov": "vitest run --coverage"
},
"dependencies": {
"pako": "^2.1.0",
"unist-builder": "^4.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tsconfig/strictest": "^2.0.5",
"@types/mdast": "^4.0.4",
"@types/node": "^22.0.0",
"@types/pako": "^2.0.3",
"@vitest/coverage-v8": "^2.0.1",
"gatsby-plugin-utils": "^4.13.1",
"mdast-util-from-markdown": "2.0.2",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"vitest": "^2.0.1"
},
"peerDependencies": {
"gatsby": "^5.0.0",
"graphql": "^16.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.6.0"
}
}