| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "name": "@growi/remark-drawio",
- "version": "7.0.0-RC.0",
- "description": "remark plugin to draw diagrams with draw.io (diagrams.net)",
- "license": "MIT",
- "keywords": [
- "unified",
- "remark",
- "remark-plugin",
- "plugin",
- "mdast",
- "markdown"
- ],
- "type": "module",
- "module": "dist/index.js",
- "types": "dist/index.d.ts",
- "files": [
- "dist"
- ],
- "main": "dist/index.js",
- "typings": "dist/index.d.ts",
- "scripts": {
- "build": "vite build",
- "clean": "shx rm -rf dist",
- "dev": "vite build --mode dev",
- "watch": "yarn dev -w --emptyOutDir=false",
- "lint:js": "yarn eslint **/*.{js,jsx,ts,tsx}",
- "lint:styles": "stylelint --allow-empty-input src/**/*.scss src/**/*.css",
- "lint:typecheck": "tsc",
- "lint": "run-p lint:*",
- "version": "yarn version --no-git-tag-version --preid=RC"
- },
- "dependencies": {},
- "devDependencies": {
- "eslint-plugin-regex": "^1.8.0",
- "hast-util-sanitize": "^4.1.0",
- "pako": "^2.1.0",
- "throttle-debounce": "^5.0.0",
- "unified": "^10.1.2",
- "unist-util-visit": "^4.0.0"
- },
- "peerDependencies": {
- "react": "^18.2.0",
- "react-dom": "^18.2.0"
- }
- }
|