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 (11.5%) to scientific vocabulary
Last synced: 10 months ago · JSON representation ·

Repository

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

README.md

Mermaid

Generate diagrams from markdown-like text.

Live Editor!

📖 Documentation | 🚀 Getting Started | 🌐 CDN | 🙌 Join Us

简体中文

Try Live Editor previews of future releases: Develop | Next



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! 🙏

Explore Mermaid.js in depth, with real-world examples, tips & tricks from the creator... The first official book on Mermaid is available for purchase. Check it out!

Table of content

Expand contents - [About](#about) - [Examples](#examples) - [Release](#release) - [Related projects](#related-projects) - [Contributors](#contributors---) - [Security and safe diagrams](#security-and-safe-diagrams) - [Reporting vulnerabilities](#reporting-vulnerabilities) - [Appreciation](#appreciation)

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.

Mermaid AI Bot

Mermaid Bot will help you understand this repository better. You can ask for code examples, installation guide, debugging help and much more.

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] ```

```mermaid 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!

mermaid 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

mermaid 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 <> 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 { <> int id size() }

```

```mermaid classDiagram Class01 <|-- AveryLongClass : Cool <> 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 { <> int id size() }

```

State diagram [docs - live editor]

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

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

Pie chart [docs - live editor]

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

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

Git graph [experimental - live editor]

gitGraph commit commit branch develop checkout develop commit commit checkout main merge develop commit commit

mermaid gitGraph commit commit branch develop checkout develop commit commit checkout main merge develop commit commit

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

```

```mermaid 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

mermaid 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,
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") ```

```mermaid 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,
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.

sh npm publish

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

Related projects

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: CloudAEye
  • Login: CloudAEye
  • Kind: organization
  • Email: info@CloudAEye.com
  • Location: California, USA

CloudAEye provides AI/ML based intelligent operations management for Cloud services.

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
  • Issue comment event: 9
  • Member event: 1
  • Push event: 23
  • Pull request review comment event: 5
  • Pull request review event: 5
  • Pull request event: 1
  • Create event: 4
Last Year
  • Issue comment event: 9
  • Member event: 1
  • Push event: 23
  • Pull request review comment event: 5
  • Pull request review event: 5
  • Pull request event: 1
  • Create event: 4

Dependencies

.github/workflows/autofix.yml actions
  • actions/checkout 11bd71901bbe5b1630ceea73d27597364c9af683 composite
  • actions/setup-node 1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a composite
  • autofix-ci/action 551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef composite
  • pnpm/action-setup a7487c7e89a18df4991f7f222e4898a00d66ddda composite
.github/workflows/build-docs.yml actions
  • actions/checkout 11bd71901bbe5b1630ceea73d27597364c9af683 composite
  • actions/setup-node 1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a composite
  • pnpm/action-setup a7487c7e89a18df4991f7f222e4898a00d66ddda composite
.github/workflows/check-readme-in-sync.yml actions
  • actions/checkout 11bd71901bbe5b1630ceea73d27597364c9af683 composite
.github/workflows/codeql.yml actions
  • actions/checkout 11bd71901bbe5b1630ceea73d27597364c9af683 composite
  • github/codeql-action/analyze b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d composite
  • github/codeql-action/autobuild b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d composite
  • github/codeql-action/init b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d composite
.github/workflows/dependency-review.yml actions
  • actions/checkout 11bd71901bbe5b1630ceea73d27597364c9af683 composite
  • actions/dependency-review-action 3b139cfc5fae8b618d3eae3675e383bb1769c019 composite
.github/workflows/e2e-applitools.yml actions
  • actions/checkout 11bd71901bbe5b1630ceea73d27597364c9af683 composite
  • actions/setup-node 1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a composite
  • cypress-io/github-action 18a6541367f4580a515371905f499a27a44e8dbe composite
  • pnpm/action-setup a7487c7e89a18df4991f7f222e4898a00d66ddda composite
.github/workflows/e2e-timings.yml actions
  • EndBug/add-and-commit a94899bca583c204427a224a7af87c02f9b325d5 composite
  • actions/checkout 11bd71901bbe5b1630ceea73d27597364c9af683 composite
  • actions/setup-node 1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a composite
  • cypress-io/github-action 18a6541367f4580a515371905f499a27a44e8dbe composite
  • peter-evans/create-pull-request v5 composite
  • pnpm/action-setup a7487c7e89a18df4991f7f222e4898a00d66ddda composite
.github/workflows/e2e.yml actions
  • actions/cache 0c907a75c2c80ebcb7f088228285e798b750cf8f composite
  • actions/cache/restore 0c907a75c2c80ebcb7f088228285e798b750cf8f composite
  • actions/checkout 11bd71901bbe5b1630ceea73d27597364c9af683 composite
  • actions/setup-node 1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a composite
  • codecov/codecov-action 13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 composite
  • cypress-io/github-action 18a6541367f4580a515371905f499a27a44e8dbe composite
  • pnpm/action-setup a7487c7e89a18df4991f7f222e4898a00d66ddda composite
.github/workflows/issue-triage.yml actions
  • andymckay/labeler e6c4322d0397f3240f0e7e30a33b5c5df2d39e90 composite
.github/workflows/link-checker.yml actions
  • actions/cache 0c907a75c2c80ebcb7f088228285e798b750cf8f composite
  • actions/checkout 11bd71901bbe5b1630ceea73d27597364c9af683 composite
  • lycheeverse/lychee-action f613c4a64e50d792e0b31ec34bbcbba12263c6a6 composite
.github/workflows/lint.yml actions
  • actions/checkout 11bd71901bbe5b1630ceea73d27597364c9af683 composite
  • actions/setup-node 1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a composite
  • hadolint/hadolint-action 54c9adbab1582c2ef04b2016b760714a4bfde3cf composite
  • pnpm/action-setup a7487c7e89a18df4991f7f222e4898a00d66ddda composite
  • testomatio/check-tests 0ea638fcec1820cf2e7b9854fdbdd04128a55bd4 composite
.github/workflows/pr-labeler.yml actions
  • release-drafter/release-drafter b1476f6e6eb133afa41ed8589daba6dc69b4d3f5 composite
.github/workflows/publish-docs.yml actions
  • actions/checkout 11bd71901bbe5b1630ceea73d27597364c9af683 composite
  • actions/configure-pages 983d7736d9b0ae728b81ab479565c72886d7745b composite
  • actions/deploy-pages d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e composite
  • actions/setup-node 1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a composite
  • actions/upload-pages-artifact 56afc609e74202658d3ffba0e8f6dda462b719fa composite
  • pnpm/action-setup a7487c7e89a18df4991f7f222e4898a00d66ddda composite
.github/workflows/release-preview-publish.yml actions
  • actions/checkout 11bd71901bbe5b1630ceea73d27597364c9af683 composite
  • actions/setup-node 1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a composite
  • pnpm/action-setup a7487c7e89a18df4991f7f222e4898a00d66ddda composite
.github/workflows/release-preview.yml actions
  • actions/checkout 11bd71901bbe5b1630ceea73d27597364c9af683 composite
  • actions/setup-node 1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a composite
  • pnpm/action-setup a7487c7e89a18df4991f7f222e4898a00d66ddda composite
.github/workflows/release.yml actions
  • actions/checkout 11bd71901bbe5b1630ceea73d27597364c9af683 composite
  • actions/setup-node 1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a composite
  • changesets/action c8bada60c408975afd1a20b3db81d6eee6789308 composite
  • pnpm/action-setup a7487c7e89a18df4991f7f222e4898a00d66ddda composite
.github/workflows/scorecard.yml actions
  • actions/checkout 11bd71901bbe5b1630ceea73d27597364c9af683 composite
  • actions/upload-artifact 4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 composite
  • github/codeql-action/upload-sarif b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d composite
  • ossf/scorecard-action f49aabe0b5af0936a0987cfb85d86b75731b0186 composite
.github/workflows/test.yml actions
  • actions/checkout 11bd71901bbe5b1630ceea73d27597364c9af683 composite
  • actions/setup-node 1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a composite
  • codecov/codecov-action 13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 composite
  • pnpm/action-setup a7487c7e89a18df4991f7f222e4898a00d66ddda 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 11bd71901bbe5b1630ceea73d27597364c9af683 composite
  • peter-evans/create-pull-request 67ccf781d68cd99b580ae25a5c18a1cc84ffff1f composite
  • pnpm/action-setup a7487c7e89a18df4991f7f222e4898a00d66ddda composite
Dockerfile docker
  • node 22.12.0-alpine3.19@sha256 build
docker-compose.yml docker
  • cypress/included 14.0.3
package.json npm
  • @applitools/eyes-cypress ^3.44.9 development
  • @argos-ci/cypress ^3.2.0 development
  • @changesets/changelog-github ^0.5.1 development
  • @changesets/cli ^2.27.12 development
  • @cspell/eslint-plugin ^8.8.4 development
  • @cypress/code-coverage ^3.12.49 development
  • @eslint/js ^9.4.0 development
  • @rollup/plugin-typescript ^12.1.2 development
  • @types/cors ^2.8.17 development
  • @types/express ^5.0.0 development
  • @types/js-yaml ^4.0.9 development
  • @types/jsdom ^21.1.7 development
  • @types/lodash ^4.17.15 development
  • @types/mdast ^4.0.4 development
  • @types/node ^22.13.5 development
  • @types/rollup-plugin-visualizer ^5.0.3 development
  • @vitest/coverage-v8 ^3.0.6 development
  • @vitest/spy ^3.0.6 development
  • @vitest/ui ^3.0.6 development
  • ajv ^8.17.1 development
  • chokidar ^4.0.3 development
  • concurrently ^9.1.2 development
  • cors ^2.8.5 development
  • cpy-cli ^5.0.0 development
  • cross-env ^7.0.3 development
  • cspell ^8.6.1 development
  • cypress ^14.0.3 development
  • cypress-image-snapshot ^4.0.1 development
  • cypress-split ^1.24.14 development
  • esbuild ^0.25.0 development
  • eslint ^9.20.1 development
  • eslint-config-prettier ^10.0.0 development
  • eslint-plugin-cypress ^4.1.0 development
  • eslint-plugin-html ^8.1.2 development
  • eslint-plugin-jest ^28.6.0 development
  • eslint-plugin-jsdoc ^50.0.1 development
  • eslint-plugin-json ^4.0.1 development
  • eslint-plugin-lodash ^8.0.0 development
  • eslint-plugin-markdown ^5.1.0 development
  • eslint-plugin-no-only-tests ^3.3.0 development
  • eslint-plugin-tsdoc ^0.4.0 development
  • eslint-plugin-unicorn ^57.0.0 development
  • express ^4.19.2 development
  • globals ^16.0.0 development
  • globby ^14.0.2 development
  • husky ^9.1.7 development
  • jest ^29.7.0 development
  • jison ^0.4.18 development
  • js-yaml ^4.1.0 development
  • jsdom ^26.0.0 development
  • langium-cli 3.3.0 development
  • lint-staged ^15.2.11 development
  • markdown-table ^3.0.4 development
  • nyc ^17.1.0 development
  • path-browserify ^1.0.1 development
  • prettier ^3.5.2 development
  • prettier-plugin-jsdoc ^1.3.2 development
  • rimraf ^6.0.1 development
  • rollup-plugin-visualizer ^5.14.0 development
  • start-server-and-test ^2.0.10 development
  • tslib ^2.8.1 development
  • tsx ^4.7.3 development
  • typescript ~5.7.3 development
  • typescript-eslint ^8.24.1 development
  • vite ^6.1.1 development
  • vite-plugin-istanbul ^7.0.0 development
  • vitest ^3.0.6 development
packages/mermaid/package.json npm
  • @adobe/jsonschema2md ^8.0.2 development
  • @iconify/types ^2.0.0 development
  • @types/cytoscape ^3.21.9 development
  • @types/cytoscape-fcose ^2.2.4 development
  • @types/d3-sankey ^0.12.4 development
  • @types/d3-scale ^4.0.9 development
  • @types/d3-scale-chromatic ^3.1.0 development
  • @types/d3-selection ^3.0.11 development
  • @types/d3-shape ^3.1.7 development
  • @types/jsdom ^21.1.7 development
  • @types/katex ^0.16.7 development
  • @types/lodash-es ^4.17.12 development
  • @types/micromatch ^4.0.9 development
  • @types/stylis ^4.2.7 development
  • @types/uuid ^10.0.0 development
  • ajv ^8.17.1 development
  • chokidar ^4.0.3 development
  • concurrently ^9.1.2 development
  • csstree-validator ^4.0.1 development
  • globby ^14.0.2 development
  • jison ^0.4.18 development
  • js-base64 ^3.7.7 development
  • jsdom ^26.0.0 development
  • json-schema-to-typescript ^15.0.4 development
  • micromatch ^4.0.8 development
  • path-browserify ^1.0.1 development
  • prettier ^3.5.2 development
  • remark ^15.0.1 development
  • remark-frontmatter ^5.0.0 development
  • remark-gfm ^4.0.1 development
  • rimraf ^6.0.1 development
  • start-server-and-test ^2.0.10 development
  • type-fest ^4.35.0 development
  • typedoc ^0.27.8 development
  • typedoc-plugin-markdown ^4.4.2 development
  • typescript ~5.7.3 development
  • unist-util-flatmap ^1.0.0 development
  • unist-util-visit ^5.0.0 development
  • vitepress ^1.0.2 development
  • vitepress-plugin-search 1.0.4-alpha.22 development
  • @braintree/sanitize-url ^7.0.4
  • @iconify/utils ^2.1.33
  • @mermaid-js/parser workspace:^
  • @types/d3 ^7.4.3
  • cytoscape ^3.29.3
  • 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.13
  • dompurify ^3.2.4
  • katex ^0.16.9
  • khroma ^2.1.0
  • lodash-es ^4.17.21
  • marked ^15.0.7
  • roughjs ^4.6.6
  • stylis ^4.3.6
  • ts-dedent ^2.2.0
  • uuid ^11.1.0
packages/mermaid/src/docs/package.json npm
  • @iconify-json/carbon ^1.1.37 development
  • @unocss/reset ^66.0.0 development
  • @vite-pwa/vitepress ^0.5.3 development
  • @vitejs/plugin-vue ^5.0.5 development
  • fast-glob ^3.3.3 development
  • https-localhost ^4.7.1 development
  • pathe ^2.0.3 development
  • unocss ^66.0.0 development
  • unplugin-vue-components ^28.4.0 development
  • vite ^6.1.1 development
  • vite-plugin-pwa ^0.21.1 development
  • vitepress 1.6.3 development
  • workbox-window ^7.3.0 development
  • @mdi/font ^7.4.47
  • @vueuse/core ^12.7.0
  • font-awesome ^4.7.0
  • jiti ^2.4.2
  • mermaid workspace:^
  • vue ^3.4.38
packages/mermaid-example-diagram/package.json npm
  • concurrently ^9.1.2 development
  • mermaid workspace:* development
  • rimraf ^6.0.1 development
  • @braintree/sanitize-url ^7.0.4
  • 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.28
packages/parser/package.json npm
  • chevrotain ^11.0.3 development
  • langium 3.3.1
pnpm-lock.yaml npm
  • 765 dependencies
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:*