mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
142 lines
4.5 KiB
JSON
142 lines
4.5 KiB
JSON
{
|
|
"name": "mermaid-monorepo",
|
|
"private": true,
|
|
"version": "9.2.0-rc1",
|
|
"description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
|
|
"main": "dist/mermaid.core.mjs",
|
|
"module": "dist/mermaid.core.mjs",
|
|
"types": "dist/mermaid.d.ts",
|
|
"type": "module",
|
|
"packageManager": "pnpm@7.12.2",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/mermaid.min.js",
|
|
"import": "./dist/mermaid.core.mjs",
|
|
"types": "./dist/mermaid.d.ts"
|
|
},
|
|
"./*": "./*"
|
|
},
|
|
"keywords": [
|
|
"diagram",
|
|
"markdown",
|
|
"flowchart",
|
|
"sequence diagram",
|
|
"gantt",
|
|
"class diagram",
|
|
"git graph"
|
|
],
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"build:vite": "ts-node-esm --transpileOnly --project=.vite/tsconfig.json .vite/build.ts",
|
|
"build:types": "concurrently \"tsc -p ./packages/mermaid/tsconfig.json --emitDeclarationOnly\" \"tsc -p ./packages/mermaid-mindmap/tsconfig.json --emitDeclarationOnly\"",
|
|
"build:watch": "pnpm build:code --watch",
|
|
"build": "pnpm clean; concurrently \"pnpm build:vite\" \"pnpm build:types\"",
|
|
"dev": "concurrently \"pnpm build:vite --watch\" \"ts-node-esm .vite/server\"",
|
|
"docs:build": "ts-node-esm --transpileOnly packages/mermaid/src/docs.mts",
|
|
"docs:verify": "pnpm docs:build --verify",
|
|
"todo-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": "pnpm build",
|
|
"lint": "eslint --cache --ignore-path .gitignore . && pnpm lint:jison && prettier --check .",
|
|
"lint:fix": "eslint --fix --ignore-path .gitignore . && prettier --write .",
|
|
"lint:jison": "ts-node-esm --transpileOnly packages/mermaid/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": "pnpm lint && vitest run",
|
|
"test:watch": "vitest --coverage --watch",
|
|
"prepublishOnly": "pnpm build && pnpm test",
|
|
"todo-prepare": "concurrently \"husky install\" \"pnpm 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",
|
|
"dagre": "^0.8.5",
|
|
"dagre-d3": "^0.6.4",
|
|
"dompurify": "2.4.0",
|
|
"fast-clone": "^1.5.13",
|
|
"graphlib": "^2.1.8",
|
|
"khroma": "^2.0.0",
|
|
"lodash": "^4.17.21",
|
|
"moment-mini": "^2.24.0",
|
|
"non-layered-tidy-tree-layout": "^2.0.2",
|
|
"stylis": "^4.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@applitools/eyes-cypress": "^3.25.7",
|
|
"@commitlint/cli": "^17.1.2",
|
|
"@commitlint/config-conventional": "^17.0.0",
|
|
"@types/d3": "^7.4.0",
|
|
"@types/dompurify": "^2.3.4",
|
|
"@types/eslint": "^8.4.6",
|
|
"@types/express": "^4.17.13",
|
|
"@types/jsdom": "^20.0.0",
|
|
"@types/lodash": "^4.14.185",
|
|
"@types/prettier": "^2.7.0",
|
|
"@types/stylis": "^4.0.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.37.0",
|
|
"@typescript-eslint/parser": "^5.37.0",
|
|
"@vitest/coverage-c8": "^0.23.2",
|
|
"@vitest/ui": "^0.23.2",
|
|
"concurrently": "^7.4.0",
|
|
"coveralls": "^3.1.1",
|
|
"cypress": "^10.0.0",
|
|
"cypress-image-snapshot": "^4.0.1",
|
|
"documentation": "13.2.0",
|
|
"eslint": "^8.23.1",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-cypress": "^2.12.1",
|
|
"eslint-plugin-html": "^7.1.0",
|
|
"eslint-plugin-jest": "^27.0.4",
|
|
"eslint-plugin-jsdoc": "^39.3.6",
|
|
"eslint-plugin-json": "^3.1.0",
|
|
"eslint-plugin-markdown": "^3.0.0",
|
|
"express": "^4.18.1",
|
|
"globby": "^13.1.2",
|
|
"husky": "^8.0.0",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"jison": "^0.4.18",
|
|
"jsdom": "^20.0.0",
|
|
"lint-staged": "^13.0.0",
|
|
"moment": "^2.23.0",
|
|
"path-browserify": "^1.0.1",
|
|
"prettier": "^2.7.1",
|
|
"prettier-plugin-jsdoc": "^0.4.2",
|
|
"remark": "^14.0.2",
|
|
"rimraf": "^3.0.2",
|
|
"start-server-and-test": "^1.12.6",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.8.3",
|
|
"unist-util-flatmap": "^1.0.0",
|
|
"vite": "^3.0.9",
|
|
"vitest": "^0.23.1"
|
|
},
|
|
"resolutions": {
|
|
"d3": "^7.0.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"sideEffects": [
|
|
"**/*.css",
|
|
"**/*.scss"
|
|
]
|
|
}
|