package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@growi/remark-drawio",
  3. "version": "1.0.0",
  4. "description": "Remark plugin to draw diagrams with draw.io (diagrams.net)",
  5. "license": "MIT",
  6. "private": "true",
  7. "keywords": [
  8. "unified",
  9. "remark",
  10. "remark-plugin",
  11. "plugin",
  12. "mdast",
  13. "markdown"
  14. ],
  15. "type": "module",
  16. "module": "dist/index.js",
  17. "types": "dist/index.d.ts",
  18. "files": [
  19. "dist"
  20. ],
  21. "main": "dist/index.js",
  22. "typings": "dist/index.d.ts",
  23. "scripts": {
  24. "build": "vite build",
  25. "clean": "shx rm -rf dist",
  26. "dev": "vite build --mode dev",
  27. "watch": "yarn dev -w --emptyOutDir=false",
  28. "lint:js": "yarn eslint **/*.{js,jsx,ts,tsx}",
  29. "lint:styles": "stylelint --allow-empty-input \"src/**/*.scss\" \"src/**/*.css\"",
  30. "lint:typecheck": "tsc",
  31. "lint": "run-p lint:*"
  32. },
  33. "dependencies": {},
  34. "devDependencies": {
  35. "eslint-plugin-regex": "^1.8.0",
  36. "hast-util-sanitize": "^4.1.0",
  37. "pako": "^2.1.0",
  38. "throttle-debounce": "^5.0.0",
  39. "unified": "^10.1.2",
  40. "unist-util-visit": "^4.0.0"
  41. },
  42. "peerDependencies": {
  43. "react": "^18.2.0",
  44. "react-dom": "^18.2.0"
  45. }
  46. }