-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.59 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@robotti.io/render-mermaid",
"version": "1.0.0",
"type": "module",
"description": "A command-line tool to render Mermaid diagrams to PNG format.",
"repository": {
"type": "git",
"url": "https://github.com/Robotti-io/render-mermaid.git"
},
"keywords": [
"mermaid",
"diagram",
"render",
"cli",
"command-line",
"tool"
],
"contributors": [
{
"name": "Jay Simmons",
"email": "James@robotti.io",
"url": "https://robotti.io"
}
],
"bin": {
"render-mermaid": "./cli.js"
},
"main": "./index.js",
"exports": {
".": "./index.js"
},
"types": "./index.d.ts",
"files": [
"cli.js",
"index.js",
"index.d.ts",
"lib/",
"render-mermaid.js",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "npm run lint:eslint && npm run lint:markdown",
"lint:fix": "eslint . --fix",
"lint:eslint": "eslint .",
"lint:markdown": "markdownlint .",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"test:ci": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --ci",
"test:coverage": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --coverage"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"dependencies": {
"@mermaid-js/mermaid-cli": "^10.9.1",
"sharp": "^0.34.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.2",
"globals": "^17.3.0",
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"markdownlint-cli": "^0.47.0"
}
}