package.json 982 B

12345678910111213141516171819202122232425262728293031323334353637
  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:typecheck": "tsc",
  20. "lint": "run-p lint:*"
  21. },
  22. "dependencies": {
  23. "@growi/core": "^6.0.16-RC.0"
  24. },
  25. "devDependencies": {
  26. "@marp-team/marp-core": "^3.4.2",
  27. "@types/reveal.js": "^4.4.1",
  28. "eslint-plugin-regex": "^1.8.0",
  29. "reveal.js": "^4.4.0"
  30. },
  31. "peerDependencies": {
  32. "next": "~12.2",
  33. "react": "^18.2.0",
  34. "react-dom": "^18.2.0",
  35. "react-markdown": "^8.0.7"
  36. }
  37. }