@diagrampilot/render-svg 0.1.5 → 0.1.6

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.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +5 -4
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # @diagrampilot/render-svg
2
+
3
+ SVG rendering adapter for DiagramPilot.
4
+
5
+ This package renders validated DiagramSpec data to review-stable SVG through
6
+ DiagramPilot's SVG rendering path. Most users should use
7
+ `diagrampilot render <path> --out <path>` through the CLI.
8
+
9
+ Public documentation:
10
+
11
+ - https://diagrampilot.com/docs/agents/quickstart.md
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diagrampilot/render-svg",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "SVG rendering adapter for DiagramPilot.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -33,7 +33,8 @@
33
33
  "dist/**/*.d.ts.map",
34
34
  "dist/**/*.js",
35
35
  "dist/**/*.js.map",
36
- "LICENSE"
36
+ "LICENSE",
37
+ "README.md"
37
38
  ],
38
39
  "publishConfig": {
39
40
  "access": "public"
@@ -42,8 +43,8 @@
42
43
  "build": "tsc -b"
43
44
  },
44
45
  "dependencies": {
45
- "@diagrampilot/core": "0.1.5",
46
- "@diagrampilot/export-d2": "0.1.5",
46
+ "@diagrampilot/core": "0.1.6",
47
+ "@diagrampilot/export-d2": "0.1.6",
47
48
  "@terrastruct/d2": "0.1.33"
48
49
  }
49
50
  }