d5-mermaid 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +212 -0
- package/dist/index.cjs +4081 -0
- package/dist/index.d.cts +280 -0
- package/dist/index.d.ts +280 -0
- package/dist/index.js +4079 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "d5-mermaid",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Mermaid.js extension for D5 (Domain Driven Design Definitive Diagrams) — visualize DDD strategic and tactical patterns",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/MutterPedro/d5-mermaid.git"
|
|
9
|
+
},
|
|
10
|
+
"main": "./dist/index.cjs",
|
|
11
|
+
"module": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"import": "./dist/index.js",
|
|
17
|
+
"require": "./dist/index.cjs"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist/**/*.js",
|
|
22
|
+
"dist/**/*.cjs",
|
|
23
|
+
"dist/**/*.d.ts",
|
|
24
|
+
"dist/**/*.d.cts"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsup",
|
|
28
|
+
"test": "vitest run",
|
|
29
|
+
"test:watch": "vitest",
|
|
30
|
+
"lint": "tsc --noEmit",
|
|
31
|
+
"prepublishOnly": "npm run build",
|
|
32
|
+
"preview": "npx http-server . -p 3000 -c-1",
|
|
33
|
+
"gallery": "npm run build && npx http-server . -p 4599 -c-1 -o /examples/gallery.html"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"mermaid",
|
|
37
|
+
"ddd",
|
|
38
|
+
"domain-driven-design",
|
|
39
|
+
"diagram",
|
|
40
|
+
"bounded-context",
|
|
41
|
+
"aggregate",
|
|
42
|
+
"subdomain",
|
|
43
|
+
"d5"
|
|
44
|
+
],
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"mermaid": ">=11.0.0"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/dagre": "^0.7.54",
|
|
51
|
+
"@vitest/coverage-v8": "^3.1.0",
|
|
52
|
+
"jsdom": "^29.0.1",
|
|
53
|
+
"mermaid": "^11.6.0",
|
|
54
|
+
"tsup": "^8.5.0",
|
|
55
|
+
"typescript": "^5.8.0",
|
|
56
|
+
"vitest": "^3.1.0"
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@dagrejs/dagre": "^3.0.0"
|
|
60
|
+
}
|
|
61
|
+
}
|