-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.66 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
71
{
"name": "@bodonkey/mermaid-extension",
"version": "3.1.0",
"description": "Beautiful Mermaid diagrams for ApostropheCMS with full Astro frontend support",
"main": "index.js",
"exports": {
".": "./index.js",
"./astro": "./astro/index.js",
"./astro/MermaidWidget.astro": "./astro/MermaidWidget.astro",
"./astro/integration": "./astro/integration.js",
"./astro/mermaid-init.client.js": "./astro/mermaid-init.client.js"
},
"files": [
"index.js",
"modules/",
"astro/",
"images/",
"README.md",
"LICENSE.md"
],
"scripts": {
"eslint": "eslint --ext .js,.vue .",
"lint": "npm run eslint",
"test": "npm run lint && mocha",
"build": "echo 'No build step required'",
"prepublishOnly": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BoDonkey/mermaid-extension.git"
},
"homepage": "https://github.com/BoDonkey/mermaid-extension#readme",
"bugs": {
"url": "https://github.com/BoDonkey/mermaid-extension/issues"
},
"author": {
"name": "BoDonkey",
"email": "robert.means1969@gmail.com",
"url": "https://github.com/BoDonkey"
},
"license": "MIT",
"keywords": [
"apostrophecms",
"apostrophe",
"astro",
"mermaid",
"diagrams",
"flowchart",
"widget",
"cms",
"frontend"
],
"dependencies": {
"ace-builds": "^1.32.3",
"mermaid": "^11.9.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-apostrophe": "^3.4.0",
"eslint-plugin-vue": "^9.33.0",
"mocha": "^11.7.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"browserslist": [
"defaults",
"not IE 11"
]
}