mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
71 lines
1.9 KiB
JSON
71 lines
1.9 KiB
JSON
|
{
|
||
|
"name": "@mermaid-js/mermaid-example-diagram",
|
||
|
"version": "9.2.0-rc2",
|
||
|
"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-example-diagram.min.js",
|
||
|
"import": "./dist/mermaid-example-diagram.core.mjs"
|
||
|
},
|
||
|
"./*": "./*"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"diagram",
|
||
|
"markdown",
|
||
|
"mindmap",
|
||
|
"mermaid"
|
||
|
],
|
||
|
"scripts": {
|
||
|
"clean": "rimraf dist",
|
||
|
"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",
|
||
|
"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",
|
||
|
"ci": "vitest run",
|
||
|
"test": "yarn lint && vitest run",
|
||
|
"test:watch": "vitest --coverage --watch",
|
||
|
"todo-prepublishOnly": "yarn build && yarn test",
|
||
|
"todo-prepare": "concurrently \"husky install ../../.husky\" \"yarn build\"",
|
||
|
"todo-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": {},
|
||
|
"devDependencies": {
|
||
|
"concurrently": "^7.4.0",
|
||
|
"rimraf": "^3.0.2"
|
||
|
},
|
||
|
"resolutions": {
|
||
|
"d3": "^7.0.0"
|
||
|
},
|
||
|
"files": [
|
||
|
"dist"
|
||
|
],
|
||
|
"sideEffects": [
|
||
|
"**/*.css",
|
||
|
"**/*.scss"
|
||
|
]
|
||
|
}
|