@jarenjs/mermaid 0.56.0 → 0.67.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.
Files changed (2) hide show
  1. package/README.md +24 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -340,3 +340,27 @@ Node is a capability it lacks.
340
340
 
341
341
  See [ARCHITECTURE.md](ARCHITECTURE.md) and
342
342
  [docs/MERMAID-FORMAT.md](docs/MERMAID-FORMAT.md).
343
+
344
+ ## Exports
345
+
346
+ Every subpath a consumer can import, derived from the manifest by
347
+ `npm run docs:derive` (`npm run docs:check` fails when the two drift):
348
+
349
+ <!--fact:exports.mermaid-->
350
+ | Import | Kind | Declarations |
351
+ |---|---|---|
352
+ | `@jarenjs/mermaid` | JavaScript | declared |
353
+ | `@jarenjs/mermaid/component` | JavaScript | declared |
354
+ | `@jarenjs/mermaid/styles` | JavaScript | declared |
355
+ | `@jarenjs/mermaid/interactive` | JavaScript | declared |
356
+ | `@jarenjs/mermaid/plugin` | JavaScript | declared |
357
+ | `@jarenjs/mermaid/theme` | JavaScript | declared |
358
+ | `@jarenjs/mermaid/styles/mermaid.css` | asset | — |
359
+ | `@jarenjs/mermaid/schemas/jaren-mermaid-ast.schema.json` | schema | — |
360
+ | `@jarenjs/mermaid/schemas/jaren-workflow.schema.json` | schema | — |
361
+ | `@jarenjs/mermaid/stylesheets/dag-to-flowchart.jslt.json` | asset | — |
362
+ | `@jarenjs/mermaid/stylesheets/flowchart-to-dag.jslt.json` | asset | — |
363
+ | `@jarenjs/mermaid/stylesheets/state-to-workflow.jslt.json` | asset | — |
364
+ | `@jarenjs/mermaid/stylesheets/workflow-to-state.jslt.json` | asset | — |
365
+ | `@jarenjs/mermaid/package.json` | metadata | — |
366
+ <!--/fact-->
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jarenjs/mermaid",
3
3
  "private": false,
4
- "version": "0.56.0",
4
+ "version": "0.67.0",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
7
7
  "types": "./dist/types/index.d.ts",
@@ -77,8 +77,8 @@
77
77
  "prepack": "npm run build:types"
78
78
  },
79
79
  "dependencies": {
80
- "@jarenjs/charts": "^0.56.0",
81
- "@jarenjs/core": "^0.56.0",
82
- "@jarenjs/view": "^0.56.0"
80
+ "@jarenjs/charts": "^0.67.0",
81
+ "@jarenjs/core": "^0.67.0",
82
+ "@jarenjs/view": "^0.67.0"
83
83
  }
84
84
  }