diagrampilot 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 +12 -0
  2. package/package.json +7 -6
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # diagrampilot
2
+
3
+ DiagramPilot command line interface for repo-native DiagramSpec workflows.
4
+
5
+ Use this package when you want the `diagrampilot` executable for checking,
6
+ validating, rendering, and exporting DiagramPilot Source Files in a repository.
7
+
8
+ Public documentation:
9
+
10
+ - https://diagrampilot.com/docs/agents/installation.md
11
+ - https://diagrampilot.com/docs/agents/quickstart.md
12
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "diagrampilot",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "DiagramPilot command line interface.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -36,7 +36,8 @@
36
36
  "dist/**/*.d.ts.map",
37
37
  "dist/**/*.js",
38
38
  "dist/**/*.js.map",
39
- "LICENSE"
39
+ "LICENSE",
40
+ "README.md"
40
41
  ],
41
42
  "publishConfig": {
42
43
  "access": "public"
@@ -45,9 +46,9 @@
45
46
  "build": "tsc -b && node scripts/make-bin-executable.mjs"
46
47
  },
47
48
  "dependencies": {
48
- "@diagrampilot/core": "0.1.5",
49
- "@diagrampilot/export-d2": "0.1.5",
50
- "@diagrampilot/export-mermaid": "0.1.5",
51
- "@diagrampilot/render-svg": "0.1.5"
49
+ "@diagrampilot/core": "0.1.6",
50
+ "@diagrampilot/export-d2": "0.1.6",
51
+ "@diagrampilot/export-mermaid": "0.1.6",
52
+ "@diagrampilot/render-svg": "0.1.6"
52
53
  }
53
54
  }