package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@growi/presentation",
  3. "version": "1.0.0",
  4. "description": "A package for GROWI presentation feature",
  5. "license": "MIT",
  6. "private": "true",
  7. "keywords": [
  8. "growi",
  9. "growi-plugin"
  10. ],
  11. "module": "dist/presentation.js",
  12. "types": "dist/index.d.ts",
  13. "files": [
  14. "dist"
  15. ],
  16. "type": "module",
  17. "exports": {
  18. "./dist/client": {
  19. "import": "./dist/client/index.js"
  20. },
  21. "./dist/services": {
  22. "import": "./dist/services/index.js"
  23. },
  24. "./dist/style.css": {
  25. "import": "./dist/style.css"
  26. }
  27. },
  28. "scripts": {
  29. "build": "vite build",
  30. "clean": "shx rm -rf dist",
  31. "dev": "vite build --mode dev",
  32. "watch": "yarn dev -w --emptyOutDir=false",
  33. "lint:js": "yarn eslint **/*.{js,jsx,ts,tsx}",
  34. "lint:styles": "stylelint --allow-empty-input \"src/**/*.scss\" \"src/**/*.css\"",
  35. "lint:typecheck": "tsc",
  36. "lint": "run-p lint:*"
  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. }