package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@growi/presentation",
  3. "version": "7.0.0-RC.0",
  4. "description": "GROWI plugin for presentation",
  5. "license": "MIT",
  6. "keywords": [
  7. "growi",
  8. "growi-plugin"
  9. ],
  10. "module": "dist/presentation.js",
  11. "types": "dist/index.d.ts",
  12. "files": [
  13. "dist"
  14. ],
  15. "type": "module",
  16. "scripts": {
  17. "build": "vite build",
  18. "clean": "shx rm -rf dist",
  19. "dev": "vite build --mode dev",
  20. "watch": "yarn dev -w --emptyOutDir=false",
  21. "lint:js": "yarn eslint **/*.{js,jsx,ts,tsx}",
  22. "lint:styles": "stylelint --allow-empty-input src/**/*.scss src/**/*.css",
  23. "lint:typecheck": "tsc",
  24. "lint": "run-p lint:*",
  25. "version": "yarn version --no-git-tag-version --preid=RC"
  26. },
  27. "dependencies": {
  28. "@growi/core": "link:../core"
  29. },
  30. "devDependencies": {
  31. "@marp-team/marp-core": "^3.6.0",
  32. "@types/reveal.js": "^4.4.1",
  33. "eslint-plugin-regex": "^1.8.0",
  34. "hast-util-sanitize": "^4.1.0",
  35. "hast-util-select": "^5.0.5",
  36. "react-markdown": "^8.0.7",
  37. "reveal.js": "^4.4.0",
  38. "unified": "^10.1.2",
  39. "unist-util-find-after": "^4.0.0",
  40. "unist-util-visit": "^4.0.0"
  41. },
  42. "peerDependencies": {
  43. "@marp-team/marpit": "*",
  44. "next": "^13",
  45. "react": "^18.2.0",
  46. "react-dom": "^18.2.0"
  47. }
  48. }