package.json 983 B

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