2
0

package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@growi/presentation",
  3. "version": "7.0.4-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. "mdast-util-frontmatter": "^1.0.0",
  37. "mdast-util-gfm": "^2.0.1",
  38. "mdast-util-to-markdown": "^1.3.0",
  39. "react-markdown": "^8.0.7",
  40. "remark-frontmatter": "^4.0.1",
  41. "remark-stringify": "^10.0.0",
  42. "reveal.js": "^4.4.0",
  43. "unified": "^10.1.2",
  44. "unist-util-find-after": "^4.0.0",
  45. "unist-util-visit": "^4.0.0"
  46. },
  47. "peerDependencies": {
  48. "@marp-team/marpit": "*",
  49. "next": "^14",
  50. "react": "^18.2.0",
  51. "react-dom": "^18.2.0"
  52. }
  53. }