mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-21 06:53:17 +08:00
79 lines
2.4 KiB
JSON
79 lines
2.4 KiB
JSON
|
{
|
||
|
"name": "@mermaid-js/mermaid-mindmap",
|
||
|
"version": "9.2.0-rc1",
|
||
|
"description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
|
||
|
"main": "dist/mermaid-mindmap.core.mjs",
|
||
|
"module": "dist/mermaid-mindmap.core.mjs",
|
||
|
"type": "module",
|
||
|
"exports": {
|
||
|
".": {
|
||
|
"require": "./dist/mermaid-mindmap.min.js",
|
||
|
"import": "./dist/mermaid-mindmap.core.mjs"
|
||
|
},
|
||
|
"./*": "./*"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"diagram",
|
||
|
"markdown",
|
||
|
"mindmap",
|
||
|
"mermaid"
|
||
|
],
|
||
|
"scripts": {
|
||
|
"clean": "rimraf dist",
|
||
|
"build:code": "node .esbuild/esbuild.cjs",
|
||
|
"build:types": "tsc -p ./tsconfig.json --emitDeclarationOnly",
|
||
|
"build:watch": "yarn build:code --watch",
|
||
|
"build:esbuild": "concurrently \"yarn build:code\" \"yarn build:types\"",
|
||
|
"build": "yarn clean; yarn build:esbuild",
|
||
|
"dev": "node .esbuild/serve.cjs",
|
||
|
"docs:build": "ts-node-esm src/docs.mts",
|
||
|
"docs:verify": "yarn docs:build --verify",
|
||
|
"postbuild": "documentation build src/mermaidAPI.ts src/config.ts src/defaultConfig.ts --shallow -f md --markdown-toc false > src/docs/Setup.md && prettier --write src/docs/Setup.md",
|
||
|
"release": "yarn build",
|
||
|
"lint": "eslint --cache --ignore-path .gitignore . && yarn lint:jison && prettier --check .",
|
||
|
"lint:fix": "eslint --fix --ignore-path .gitignore . && prettier --write .",
|
||
|
"lint:jison": "ts-node-esm src/jison/lint.mts",
|
||
|
"cypress": "cypress run",
|
||
|
"cypress:open": "cypress open",
|
||
|
"e2e": "start-server-and-test dev http://localhost:9000/ cypress",
|
||
|
"ci": "vitest run",
|
||
|
"test": "yarn lint && vitest run",
|
||
|
"test:watch": "vitest --coverage --watch",
|
||
|
"prepublishOnly": "yarn build && yarn test",
|
||
|
"prepare": "concurrently \"husky install\" \"yarn build\"",
|
||
|
"pre-commit": "lint-staged"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/mermaid-js/mermaid"
|
||
|
},
|
||
|
"author": "Knut Sveidqvist",
|
||
|
"license": "MIT",
|
||
|
"standard": {
|
||
|
"ignore": [
|
||
|
"**/parser/*.js",
|
||
|
"dist/**/*.js",
|
||
|
"cypress/**/*.js"
|
||
|
],
|
||
|
"globals": [
|
||
|
"page"
|
||
|
]
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@braintree/sanitize-url": "^6.0.0",
|
||
|
"d3": "^7.0.0",
|
||
|
"non-layered-tidy-tree-layout": "^2.0.2"
|
||
|
},
|
||
|
"devDependencies": {},
|
||
|
"resolutions": {
|
||
|
"d3": "^7.0.0"
|
||
|
},
|
||
|
"files": [
|
||
|
"dist"
|
||
|
],
|
||
|
"sideEffects": [
|
||
|
"**/*.css",
|
||
|
"**/*.scss"
|
||
|
]
|
||
|
}
|