Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (10.5%) to scientific vocabulary
Last synced: 10 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: git-hubdoc
  • License: mit
  • Language: TypeScript
  • Default Branch: master
  • Size: 8.29 MB
Statistics
  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created over 1 year ago · Last pushed over 1 year ago
Metadata Files
Readme Changelog Funding License Code of conduct Citation

README.html


  
    
    
    
    
  
  
    

NPM Build CI Status npm minified gzipped bundle size Coverage Status CDN Status NPM Downloads Join our Discord! Twitter Follow Covered by Argos Visual Testing OpenSSF Scorecard

:trophy: Mermaid was nominated and won the JS Open Source Awards (2019) in the category "The most exciting use of technology"!!!

Thanks to all involved, people committing pull requests, people answering questions! 🙏

Table of content

About

Mermaid is a JavaScript-based diagramming and charting tool that uses Markdown-inspired text definitions and a renderer to create and modify complex diagrams. The main purpose of Mermaid is to help documentation catch up with development.

Doc-Rot is a Catch-22 that Mermaid helps to solve.

Diagramming and documentation costs precious developer time and gets outdated quickly. But not having diagrams or docs ruins productivity and hurts organizational learning. Mermaid addresses this problem by enabling users to create easily modifiable diagrams. It can also be made part of production scripts (and other pieces of code).

Mermaid allows even non-programmers to easily create detailed diagrams through the Mermaid Live Editor. For video tutorials, visit our Tutorials page. Use Mermaid with your favorite applications, check out the list of Integrations and Usages of Mermaid.

You can also use Mermaid within GitHub as well many of your other favorite applications—check out the list of Integrations and Usages of Mermaid.

For a more detailed introduction to Mermaid and some of its more basic uses, look to the Beginner's Guide, Usage and Tutorials.

Our PR Visual Regression Testing is powered by Argos with their generous Open Source plan. It makes the process of reviewing PRs with visual changes a breeze.

Covered by Argos Visual Testing

In our release process we rely heavily on visual regression tests using applitools. Applitools is a great service which has been easy to use and integrate with our tests.

Examples

The following are some examples of the diagrams, charts and graphs that can be made using Mermaid. Click here to jump into the text syntax.

Flowchart [docs - live editor]

flowchart LR

A[Hard] -->|Text| B(Round)
B --> C{Decision}
C -->|One| D[Result 1]
C -->|Two| E[Result 2]
flowchart LR

A[Hard] -->|Text| B(Round)
B --> C{Decision}
C -->|One| D[Result 1]
C -->|Two| E[Result 2]

Sequence diagram [docs - live editor]

sequenceDiagram
Alice->>John: Hello John, how are you?
loop HealthCheck
    John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!
sequenceDiagram
Alice->>John: Hello John, how are you?
loop HealthCheck
    John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!

Gantt chart [docs - live editor]

gantt
    section Section
    Completed :done,    des1, 2014-01-06,2014-01-08
    Active        :active,  des2, 2014-01-07, 3d
    Parallel 1   :         des3, after des1, 1d
    Parallel 2   :         des4, after des1, 1d
    Parallel 3   :         des5, after des3, 1d
    Parallel 4   :         des6, after des4, 1d
gantt
    section Section
    Completed :done,    des1, 2014-01-06,2014-01-08
    Active        :active,  des2, 2014-01-07, 3d
    Parallel 1   :         des3, after des1, 1d
    Parallel 2   :         des4, after des1, 1d
    Parallel 3   :         des5, after des3, 1d
    Parallel 4   :         des6, after des4, 1d

Class diagram [docs - live editor]

classDiagram
Class01 <|-- AveryLongClass : Cool
<<Interface>> Class01
Class09 --> C2 : Where am I?
Class09 --* C3
Class09 --|> Class07
Class07 : equals()
Class07 : Object[] elementData
Class01 : size()
Class01 : int chimp
Class01 : int gorilla
class Class10 {
  <<service>>
  int id
  size()
}

classDiagram
Class01 <|-- AveryLongClass : Cool
<<Interface>> Class01
Class09 --> C2 : Where am I?
Class09 --* C3
Class09 --|> Class07
Class07 : equals()
Class07 : Object[] elementData
Class01 : size()
Class01 : int chimp
Class01 : int gorilla
class Class10 {
  <<service>>
  int id
  size()
}

State diagram [docs - live editor]

stateDiagram-v2
[*] --> Still
Still --> [*]
Still --> Moving
Moving --> Still
Moving --> Crash
Crash --> [*]
stateDiagram-v2
[*] --> Still
Still --> [*]
Still --> Moving
Moving --> Still
Moving --> Crash
Crash --> [*]

Pie chart [docs - live editor]

pie
"Dogs" : 386
"Cats" : 85.9
"Rats" : 15
pie
"Dogs" : 386
"Cats" : 85.9
"Rats" : 15

Git graph [experimental - live editor]

Bar chart (using gantt chart) [docs - live editor]

gantt
    title Git Issues - days since last update
    dateFormat  X
    axisFormat %s

    section Issue19062
    71   : 0, 71
    section Issue19401
    36   : 0, 36
    section Issue193
    34   : 0, 34
    section Issue7441
    9    : 0, 9
    section Issue1300
    5    : 0, 5
gantt
    title Git Issues - days since last update
    dateFormat  X
    axisFormat %s

    section Issue19062
    71   : 0, 71
    section Issue19401
    36   : 0, 36
    section Issue193
    34   : 0, 34
    section Issue7441
    9    : 0, 9
    section Issue1300
    5    : 0, 5

User Journey diagram [docs - live editor]

  journey
    title My working day
    section Go to work
      Make tea: 5: Me
      Go upstairs: 3: Me
      Do work: 1: Me, Cat
    section Go home
      Go downstairs: 5: Me
      Sit down: 3: Me
  journey
    title My working day
    section Go to work
      Make tea: 5: Me
      Go upstairs: 3: Me
      Do work: 1: Me, Cat
    section Go home
      Go downstairs: 5: Me
      Sit down: 3: Me

C4 diagram [docs]

C4Context
title System Context diagram for Internet Banking System

Person(customerA, "Banking Customer A", "A customer of the bank, with personal bank accounts.")
Person(customerB, "Banking Customer B")
Person_Ext(customerC, "Banking Customer C")
System(SystemAA, "Internet Banking System", "Allows customers to view information about their bank accounts, and make payments.")

Person(customerD, "Banking Customer D", "A customer of the bank, <br/> with personal bank accounts.")

Enterprise_Boundary(b1, "BankBoundary") {

  SystemDb_Ext(SystemE, "Mainframe Banking System", "Stores all of the core banking information about customers, accounts, transactions, etc.")

  System_Boundary(b2, "BankBoundary2") {
    System(SystemA, "Banking System A")
    System(SystemB, "Banking System B", "A system of the bank, with personal bank accounts.")
  }

  System_Ext(SystemC, "E-mail system", "The internal Microsoft Exchange e-mail system.")
  SystemDb(SystemD, "Banking System D Database", "A system of the bank, with personal bank accounts.")

  Boundary(b3, "BankBoundary3", "boundary") {
    SystemQueue(SystemF, "Banking System F Queue", "A system of the bank, with personal bank accounts.")
    SystemQueue_Ext(SystemG, "Banking System G Queue", "A system of the bank, with personal bank accounts.")
  }
}

BiRel(customerA, SystemAA, "Uses")
BiRel(SystemAA, SystemE, "Uses")
Rel(SystemAA, SystemC, "Sends e-mails", "SMTP")
Rel(SystemC, customerA, "Sends e-mails to")
C4Context
title System Context diagram for Internet Banking System

Person(customerA, "Banking Customer A", "A customer of the bank, with personal bank accounts.")
Person(customerB, "Banking Customer B")
Person_Ext(customerC, "Banking Customer C")
System(SystemAA, "Internet Banking System", "Allows customers to view information about their bank accounts, and make payments.")

Person(customerD, "Banking Customer D", "A customer of the bank, <br/> with personal bank accounts.")

Enterprise_Boundary(b1, "BankBoundary") {

  SystemDb_Ext(SystemE, "Mainframe Banking System", "Stores all of the core banking information about customers, accounts, transactions, etc.")

  System_Boundary(b2, "BankBoundary2") {
    System(SystemA, "Banking System A")
    System(SystemB, "Banking System B", "A system of the bank, with personal bank accounts.")
  }

  System_Ext(SystemC, "E-mail system", "The internal Microsoft Exchange e-mail system.")
  SystemDb(SystemD, "Banking System D Database", "A system of the bank, with personal bank accounts.")

  Boundary(b3, "BankBoundary3", "boundary") {
    SystemQueue(SystemF, "Banking System F Queue", "A system of the bank, with personal bank accounts.")
    SystemQueue_Ext(SystemG, "Banking System G Queue", "A system of the bank, with personal bank accounts.")
  }
}

BiRel(customerA, SystemAA, "Uses")
BiRel(SystemAA, SystemE, "Uses")
Rel(SystemAA, SystemC, "Sends e-mails", "SMTP")
Rel(SystemC, customerA, "Sends e-mails to")

Release

For those who have the permission to do so:

Update version number in package.json.

npm publish

The above command generates files into the dist folder and publishes them to https://www.npmjs.com.

Contributors Good first issue Contributors Commits

Mermaid is a growing community and is always accepting new contributors. There's a lot of different ways to help out and we're always looking for extra hands! Look at this issue if you want to know where to start helping out.

Detailed information about how to contribute can be found in the contribution guide

Security and safe diagrams

For public sites, it can be precarious to retrieve text from users on the internet, storing that content for presentation in a browser at a later stage. The reason is that the user content can contain embedded malicious scripts that will run when the data is presented. For Mermaid this is a risk, specially as mermaid diagrams contain many characters that are used in html which makes the standard sanitation unusable as it also breaks the diagrams. We still make an effort to sanitize the incoming code and keep refining the process but it is hard to guarantee that there are no loop holes.

As an extra level of security for sites with external users we are happy to introduce a new security level in which the diagram is rendered in a sandboxed iframe preventing javascript in the code from being executed. This is a great step forward for better security.

Unfortunately you can not have a cake and eat it at the same time which in this case means that some of the interactive functionality gets blocked along with the possible malicious code.

Reporting vulnerabilities

To report a vulnerability, please e-mail security@mermaid.live with a description of the issue, the steps you took to create the issue, affected versions, and if known, mitigations for the issue.

Appreciation

A quick note from Knut Sveidqvist:

Many thanks to the d3 and dagre-d3 projects for providing the graphical layout and drawing libraries!

Thanks also to the js-sequence-diagram project for usage of the grammar for the sequence diagrams. Thanks to Jessica Peter for inspiration and starting point for gantt rendering.

Thank you to Tyler Long who has been a collaborator since April 2017.

Thank you to the ever-growing list of contributors that brought the project this far!


Mermaid was created by Knut Sveidqvist for easier documentation.

Owner

  • Name: git-hubdoc
  • Login: git-hubdoc
  • Kind: organization

Citation (CITATION.cff)

cff-version: 1.2.0
title: 'Mermaid: Generate diagrams from markdown-like text'
message: >-
  If you use this software, please cite it using the metadata from this file.
type: software
authors:
  - family-names: Sveidqvist
    given-names: Knut
  - name: 'Contributors to Mermaid'
repository-code: 'https://github.com/mermaid-js/mermaid'
date-released: 2014-12-02
url: 'https://mermaid.js.org/'
abstract: >-
  JavaScript based diagramming and charting tool that renders Markdown-inspired
  text definitions to create and modify diagrams dynamically.
license: MIT

GitHub Events

Total
  • Push event: 3
  • Create event: 1
Last Year
  • Push event: 3
  • Create event: 1

Dependencies

.github/workflows/autofix.yml actions
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-node 0a44ba7841725637a19e28fa30b79a866c81b0a6 composite
  • autofix-ci/action ff86a557419858bb967097bfc916833f5647fa8c composite
  • pnpm/action-setup fe02b34f77f8bc703788d5817da081398fad5dd2 composite
.github/workflows/build-docs.yml actions
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-node 0a44ba7841725637a19e28fa30b79a866c81b0a6 composite
  • pnpm/action-setup fe02b34f77f8bc703788d5817da081398fad5dd2 composite
.github/workflows/check-readme-in-sync.yml actions
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
.github/workflows/codeql.yml actions
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • github/codeql-action/analyze c36620d31ac7c881962c3d9dd939c40ec9434f2b composite
  • github/codeql-action/autobuild c36620d31ac7c881962c3d9dd939c40ec9434f2b composite
  • github/codeql-action/init c36620d31ac7c881962c3d9dd939c40ec9434f2b composite
.github/workflows/dependency-review.yml actions
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/dependency-review-action 5a2ce3f5b92ee19cbb1541a4984c76d921601d7c composite
.github/workflows/e2e-applitools.yml actions
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-node 0a44ba7841725637a19e28fa30b79a866c81b0a6 composite
  • cypress-io/github-action d79d2d530a66e641eb4a5f227e13bc985c60b964 composite
  • pnpm/action-setup fe02b34f77f8bc703788d5817da081398fad5dd2 composite
.github/workflows/e2e-timings.yml actions
  • EndBug/add-and-commit a94899bca583c204427a224a7af87c02f9b325d5 composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-node 0a44ba7841725637a19e28fa30b79a866c81b0a6 composite
  • cypress-io/github-action 0da3c06ed8217b912deea9d8ee69630baed1737e composite
  • pnpm/action-setup fe02b34f77f8bc703788d5817da081398fad5dd2 composite
.github/workflows/e2e.yml actions
  • actions/cache 0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 composite
  • actions/cache/restore 0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-node 0a44ba7841725637a19e28fa30b79a866c81b0a6 composite
  • codecov/codecov-action e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 composite
  • cypress-io/github-action 0da3c06ed8217b912deea9d8ee69630baed1737e composite
  • pnpm/action-setup fe02b34f77f8bc703788d5817da081398fad5dd2 composite
.github/workflows/issue-triage.yml actions
  • andymckay/labeler e6c4322d0397f3240f0e7e30a33b5c5df2d39e90 composite
.github/workflows/link-checker.yml actions
  • actions/cache 0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • lycheeverse/lychee-action c053181aa0c3d17606addfe97a9075a32723548a composite
.github/workflows/lint.yml actions
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-node 0a44ba7841725637a19e28fa30b79a866c81b0a6 composite
  • hadolint/hadolint-action 54c9adbab1582c2ef04b2016b760714a4bfde3cf composite
  • pnpm/action-setup fe02b34f77f8bc703788d5817da081398fad5dd2 composite
  • testomatio/check-tests 0ea638fcec1820cf2e7b9854fdbdd04128a55bd4 composite
.github/workflows/pr-labeler.yml actions
  • release-drafter/release-drafter 3f0f87098bd6b5c5b9a36d49c41d998ea58f9348 composite
.github/workflows/publish-docs.yml actions
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/configure-pages 1f0c5cde4bc74cd7e1254d0cb4de8d49e9068c7d composite
  • actions/deploy-pages d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e composite
  • actions/setup-node 0a44ba7841725637a19e28fa30b79a866c81b0a6 composite
  • actions/upload-pages-artifact 56afc609e74202658d3ffba0e8f6dda462b719fa composite
  • pnpm/action-setup fe02b34f77f8bc703788d5817da081398fad5dd2 composite
.github/workflows/release-preview-publish.yml actions
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-node 0a44ba7841725637a19e28fa30b79a866c81b0a6 composite
  • pnpm/action-setup fe02b34f77f8bc703788d5817da081398fad5dd2 composite
.github/workflows/release-preview.yml actions
  • actions/checkout f43a0e5ff2bd294095638e18286ca9a3d1956744 composite
  • actions/setup-node 0a44ba7841725637a19e28fa30b79a866c81b0a6 composite
  • pnpm/action-setup fe02b34f77f8bc703788d5817da081398fad5dd2 composite
.github/workflows/release.yml actions
  • actions/checkout f43a0e5ff2bd294095638e18286ca9a3d1956744 composite
  • actions/setup-node 0a44ba7841725637a19e28fa30b79a866c81b0a6 composite
  • changesets/action 3de3850952bec538fde60aac71731376e57b9b57 composite
  • pnpm/action-setup fe02b34f77f8bc703788d5817da081398fad5dd2 composite
.github/workflows/scorecard.yml actions
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/upload-artifact 97a0fba1372883ab732affbe8f94b823f91727db composite
  • github/codeql-action/upload-sarif c36620d31ac7c881962c3d9dd939c40ec9434f2b composite
  • ossf/scorecard-action dc50aa9510b46c811795eb24b2f1ba02a914e534 composite
.github/workflows/test.yml actions
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • actions/setup-node 0a44ba7841725637a19e28fa30b79a866c81b0a6 composite
  • codecov/codecov-action e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 composite
  • pnpm/action-setup fe02b34f77f8bc703788d5817da081398fad5dd2 composite
.github/workflows/unlock-reopened-issues.yml actions
  • Dunning-Kruger/unlock-issues b06b7f7e5c3f2eaa1c6d5d89f40930e4d6d9699e composite
.github/workflows/update-browserlist.yml actions
  • EndBug/add-and-commit a94899bca583c204427a224a7af87c02f9b325d5 composite
  • actions/checkout 692973e3d937129bcbf40652eb9f2f61becf3332 composite
  • peter-evans/create-pull-request c5a7806660adbe173f04e3e038b0ccdcd758773c composite
  • pnpm/action-setup fe02b34f77f8bc703788d5817da081398fad5dd2 composite
docker-compose.yml docker
  • cypress/included 13.7.3
package.json npm
  • @applitools/eyes-cypress ^3.44.4 development
  • @argos-ci/cypress ^2.2.2 development
  • @changesets/changelog-github ^0.5.0 development
  • @changesets/cli ^2.27.7 development
  • @cspell/eslint-plugin ^8.8.4 development
  • @cypress/code-coverage ^3.12.30 development
  • @eslint/js ^9.4.0 development
  • @rollup/plugin-typescript ^11.1.6 development
  • @types/cors ^2.8.17 development
  • @types/express ^4.17.21 development
  • @types/js-yaml ^4.0.9 development
  • @types/jsdom ^21.1.6 development
  • @types/lodash ^4.17.0 development
  • @types/mdast ^4.0.3 development
  • @types/node ^20.11.30 development
  • @types/rollup-plugin-visualizer ^4.2.4 development
  • @vitest/coverage-v8 ^1.4.0 development
  • @vitest/spy ^1.4.0 development
  • @vitest/ui ^1.4.0 development
  • ajv ^8.12.0 development
  • chokidar ^3.6.0 development
  • concurrently ^8.2.2 development
  • cors ^2.8.5 development
  • cpy-cli ^5.0.0 development
  • cross-env ^7.0.3 development
  • cspell ^8.6.0 development
  • cypress ^13.14.1 development
  • cypress-image-snapshot ^4.0.1 development
  • cypress-split ^1.24.0 development
  • esbuild ^0.21.5 development
  • eslint ^9.4.0 development
  • eslint-config-prettier ^9.1.0 development
  • eslint-plugin-cypress ^3.3.0 development
  • eslint-plugin-html ^8.1.1 development
  • eslint-plugin-jest ^28.6.0 development
  • eslint-plugin-jsdoc ^50.0.0 development
  • eslint-plugin-json ^4.0.0 development
  • eslint-plugin-lodash ^8.0.0 development
  • eslint-plugin-markdown ^5.0.0 development
  • eslint-plugin-no-only-tests ^3.1.0 development
  • eslint-plugin-tsdoc ^0.3.0 development
  • eslint-plugin-unicorn ^56.0.0 development
  • express ^4.19.1 development
  • globals ^15.4.0 development
  • globby ^14.0.1 development
  • husky ^9.0.11 development
  • jest ^29.7.0 development
  • jison ^0.4.18 development
  • js-yaml ^4.1.0 development
  • jsdom ^24.0.0 development
  • langium-cli 3.0.3 development
  • lint-staged ^15.2.2 development
  • markdown-table ^3.0.3 development
  • nyc ^15.1.0 development
  • path-browserify ^1.0.1 development
  • prettier ^3.2.5 development
  • prettier-plugin-jsdoc ^1.3.0 development
  • rimraf ^5.0.5 development
  • rollup-plugin-visualizer ^5.12.0 development
  • start-server-and-test ^2.0.3 development
  • tsx ^4.7.1 development
  • typescript ~5.4.5 development
  • typescript-eslint ^8.0.0-alpha.34 development
  • vite ^5.2.3 development
  • vite-plugin-istanbul ^6.0.0 development
  • vitest ^1.4.0 development
packages/mermaid/package.json npm
  • @adobe/jsonschema2md ^8.0.0 development
  • @iconify/types ^2.0.0 development
  • @types/cytoscape ^3.21.4 development
  • @types/cytoscape-fcose ^2.2.4 development
  • @types/d3-sankey ^0.12.4 development
  • @types/d3-scale ^4.0.8 development
  • @types/d3-scale-chromatic ^3.0.3 development
  • @types/d3-selection ^3.0.10 development
  • @types/d3-shape ^3.1.6 development
  • @types/jsdom ^21.1.6 development
  • @types/katex ^0.16.7 development
  • @types/lodash-es ^4.17.12 development
  • @types/micromatch ^4.0.6 development
  • @types/prettier ^3.0.0 development
  • @types/stylis ^4.2.5 development
  • @types/uuid ^9.0.8 development
  • ajv ^8.12.0 development
  • chokidar ^3.6.0 development
  • concurrently ^8.2.2 development
  • csstree-validator ^3.0.0 development
  • globby ^14.0.1 development
  • jison ^0.4.18 development
  • js-base64 ^3.7.7 development
  • jsdom ^24.0.0 development
  • json-schema-to-typescript ^13.1.2 development
  • micromatch ^4.0.5 development
  • path-browserify ^1.0.1 development
  • prettier ^3.2.5 development
  • remark ^15.0.1 development
  • remark-frontmatter ^5.0.0 development
  • remark-gfm ^4.0.0 development
  • rimraf ^5.0.5 development
  • start-server-and-test ^2.0.3 development
  • type-fest ^4.13.1 development
  • typedoc ^0.25.12 development
  • typedoc-plugin-markdown ^3.17.1 development
  • typescript ~5.4.3 development
  • unist-util-flatmap ^1.0.0 development
  • unist-util-visit ^5.0.0 development
  • vitepress ^1.0.1 development
  • vitepress-plugin-search 1.0.4-alpha.22 development
  • @braintree/sanitize-url ^7.0.1
  • @iconify/utils ^2.1.32
  • @mermaid-js/parser workspace:^
  • @types/d3 ^7.4.3
  • cytoscape ^3.29.2
  • cytoscape-cose-bilkent ^4.1.0
  • cytoscape-fcose ^2.2.0
  • d3 ^7.9.0
  • d3-sankey ^0.12.3
  • dagre-d3-es 7.0.11
  • dayjs ^1.11.10
  • dompurify ^3.2.1
  • katex ^0.16.9
  • khroma ^2.1.0
  • lodash-es ^4.17.21
  • marked ^13.0.2
  • roughjs ^4.6.6
  • stylis ^4.3.1
  • ts-dedent ^2.2.0
  • uuid ^9.0.1
packages/mermaid/src/docs/package.json npm
  • @iconify-json/carbon ^1.1.31 development
  • @unocss/reset ^0.59.0 development
  • @vite-pwa/vitepress ^0.4.0 development
  • @vitejs/plugin-vue ^5.0.0 development
  • fast-glob ^3.3.2 development
  • https-localhost ^4.7.1 development
  • pathe ^1.1.2 development
  • unocss ^0.59.0 development
  • unplugin-vue-components ^0.26.0 development
  • vite ^5.0.0 development
  • vite-plugin-pwa ^0.19.7 development
  • vitepress 1.1.4 development
  • workbox-window ^7.0.0 development
  • @mdi/font ^7.0.0
  • @vueuse/core ^10.9.0
  • font-awesome ^4.7.0
  • jiti ^1.21.0
  • mermaid workspace:^
  • vue ^3.4.21
packages/mermaid-example-diagram/package.json npm
  • concurrently ^8.2.2 development
  • mermaid workspace:* development
  • rimraf ^5.0.5 development
  • @braintree/sanitize-url ^7.0.0
  • d3 ^7.9.0
  • khroma ^2.1.0
packages/mermaid-layout-elk/package.json npm
  • @types/d3 ^7.4.3 development
  • mermaid workspace:^ development
  • d3 ^7.9.0
  • elkjs ^0.9.3
packages/mermaid-zenuml/package.json npm
  • mermaid workspace:^ development
  • @zenuml/core ^3.23.27
packages/parser/package.json npm
  • chevrotain ^11.0.3 development
  • langium 3.0.0
tests/webpack/package.json npm
  • webpack ^5.91.0 development
  • webpack-cli ^4.10.0 development
  • webpack-dev-server ^4.15.2 development
  • @mermaid-js/mermaid-example-diagram workspace:*
  • mermaid workspace:*