package.json 1.0 KB

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