|
| 1 | +{ |
| 2 | + "name": "@mermaidchart/cli", |
| 3 | + "version": "0.1.0-alpha.0", |
| 4 | + "description": "CLI for interacting with https://MermaidChart.com, the platform that makes collaborating with Mermaid diagrams easy", |
| 5 | + "main": "index.js", |
| 6 | + "bin": { |
| 7 | + "mermaid-chart": "dist/cli.js" |
| 8 | + }, |
| 9 | + "//1": "temporarily disable pushing until we finish progress on this", |
| 10 | + "private": true, |
| 11 | + "engines": { |
| 12 | + "node": "^18.18.0 || ^20.0.0" |
| 13 | + }, |
| 14 | + "scripts": { |
| 15 | + "dev": "tsx src/cli.ts", |
| 16 | + "lint": "eslint src/ && prettier --check src/", |
| 17 | + "lint:fix": "eslint --fix src/ && prettier --write src/", |
| 18 | + "prepare": "tsc --build tsconfig.json", |
| 19 | + "test": "vitest" |
| 20 | + }, |
| 21 | + "type": "module", |
| 22 | + "repository": { |
| 23 | + "type": "git", |
| 24 | + "directory": "packages/cli", |
| 25 | + "url": "git+https://github.com/Mermaid-Chart/plugins.git" |
| 26 | + }, |
| 27 | + "keywords": [ |
| 28 | + "mermaid", |
| 29 | + "mermaidchart", |
| 30 | + "cli" |
| 31 | + ], |
| 32 | + "author": "Alois Klink <alois@mermaidchart.com> (https://github.com/aloisklink)", |
| 33 | + "//2": "TODO: decide on a license once this code is finished", |
| 34 | + "license": "UNLICENSED", |
| 35 | + "bugs": { |
| 36 | + "url": "https://github.com/Mermaid-Chart/plugins/issues" |
| 37 | + }, |
| 38 | + "homepage": "https://github.com/Mermaid-Chart/plugins/tree/main/packages/cli#readme", |
| 39 | + "devDependencies": { |
| 40 | + "@cspell/eslint-plugin": "^8.0.0", |
| 41 | + "@tsconfig/node18": "^18.2.2", |
| 42 | + "@tsconfig/strictest": "^2.0.2", |
| 43 | + "@types/iarna__toml": "^2.0.5", |
| 44 | + "@types/js-yaml": "^4.0.9", |
| 45 | + "@types/node": "^18.18.11", |
| 46 | + "@typescript-eslint/eslint-plugin": "^6.11.0", |
| 47 | + "@typescript-eslint/parser": "^6.11.0", |
| 48 | + "eslint": "^8.54.0", |
| 49 | + "tsx": "^3.12.8", |
| 50 | + "typescript": "^5.2.2", |
| 51 | + "vitest": "^0.34.6" |
| 52 | + }, |
| 53 | + "dependencies": { |
| 54 | + "@commander-js/extra-typings": "^11.1.0", |
| 55 | + "@iarna/toml": "^2.2.5", |
| 56 | + "@inquirer/input": "^1.2.14", |
| 57 | + "@inquirer/select": "^1.3.1", |
| 58 | + "@mermaidchart/sdk": "workspace:^", |
| 59 | + "commander": "^11.1.0", |
| 60 | + "js-yaml": "^4.1.0" |
| 61 | + } |
| 62 | +} |
0 commit comments