package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@growi/presentation",
  3. "version": "7.0.5-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. "exports": {
  17. "./dist/client": {
  18. "import": "./dist/client/index.js"
  19. },
  20. "./dist/services": {
  21. "import": "./dist/services/index.js"
  22. },
  23. "./dist/style.css": {
  24. "import": "./dist/style.css"
  25. }
  26. },
  27. "scripts": {
  28. "build": "vite build",
  29. "clean": "shx rm -rf dist",
  30. "dev": "vite build --mode dev",
  31. "watch": "yarn dev -w --emptyOutDir=false",
  32. "lint:js": "yarn eslint **/*.{js,jsx,ts,tsx}",
  33. "lint:styles": "stylelint --allow-empty-input src/**/*.scss src/**/*.css",
  34. "lint:typecheck": "tsc",
  35. "lint": "run-p lint:*",
  36. "version": "yarn version --no-git-tag-version --preid=RC"
  37. },
  38. "dependencies": {
  39. "@growi/core": "link:../core"
  40. },
  41. "devDependencies": {
  42. "@marp-team/marp-core": "^3.9.0",
  43. "@marp-team/marpit": "^2.6.1",
  44. "@types/reveal.js": "^4.4.1",
  45. "eslint-plugin-regex": "^1.8.0",
  46. "hast-util-sanitize": "^4.1.0",
  47. "hast-util-select": "^5.0.5",
  48. "mdast-util-frontmatter": "^1.0.0",
  49. "mdast-util-gfm": "^2.0.1",
  50. "mdast-util-to-markdown": "^1.3.0",
  51. "react-markdown": "^8.0.7",
  52. "remark-frontmatter": "^4.0.1",
  53. "remark-parse": "^10.0.0",
  54. "remark-stringify": "^10.0.0",
  55. "reveal.js": "^4.4.0",
  56. "unified": "^10.1.2",
  57. "unist-util-find-after": "^4.0.0",
  58. "unist-util-visit": "^4.0.0"
  59. },
  60. "peerDependencies": {
  61. "next": "^14",
  62. "react": "^18.2.0",
  63. "react-dom": "^18.2.0"
  64. }
  65. }