| 1 | { |
| 2 | "name": "@mermaid-js/mermaid-example-diagram", |
| 3 | "version": "9.3.0", |
| 4 | "private": true, |
| 5 | "description": "Example of external diagram module for MermaidJS.", |
| 6 | "module": "dist/mermaid-example-diagram.core.mjs", |
| 7 | "types": "dist/detector.d.ts", |
| 8 | "type": "module", |
| 9 | "exports": { |
| 10 | ".": { |
| 11 | "import": "./dist/mermaid-example-diagram.core.mjs", |
| 12 | "types": "./dist/detector.d.ts" |
| 13 | }, |
| 14 | "./*": "./*" |
| 15 | }, |
| 16 | "keywords": [ |
| 17 | "diagram", |
| 18 | "markdown", |
| 19 | "example", |
| 20 | "mermaid" |
| 21 | ], |
| 22 | "scripts": {}, |
| 23 | "repository": { |
| 24 | "type": "git", |
| 25 | "url": "https://github.com/mermaid-js/mermaid" |
| 26 | }, |
| 27 | "author": "Knut Sveidqvist", |
| 28 | "license": "MIT", |
| 29 | "standard": { |
| 30 | "ignore": [ |
| 31 | "**/parser/*.js", |
| 32 | "dist/**/*.js", |
| 33 | "cypress/**/*.js" |
| 34 | ], |
| 35 | "globals": [ |
| 36 | "page" |
| 37 | ] |
| 38 | }, |
| 39 | "dependencies": { |
| 40 | "@braintree/sanitize-url": "^7.1.1", |
| 41 | "d3": "^7.9.0", |
| 42 | "khroma": "^2.1.0" |
| 43 | }, |
| 44 | "devDependencies": { |
| 45 | "concurrently": "^9.2.1", |
| 46 | "mermaid": "workspace:*", |
| 47 | "rimraf": "^6.0.1" |
| 48 | }, |
| 49 | "files": [ |
| 50 | "dist" |
| 51 | ], |
| 52 | "sideEffects": [ |
| 53 | "**/*.css", |
| 54 | "**/*.scss" |
| 55 | ] |
| 56 | } |
| 57 | |