package.json 1023 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@growi/presentation",
  3. "version": "6.1.4-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": ["dist"],
  10. "scripts": {
  11. "build": "vite build",
  12. "clean": "npx -y shx rm -rf dist",
  13. "dev": "vite build --mode dev",
  14. "watch": "yarn dev -w --emptyOutDir=false",
  15. "lint:js": "yarn eslint **/*.{js,jsx,ts,tsx}",
  16. "lint:styles": "stylelint --allow-empty-input src/**/*.scss src/**/*.css",
  17. "lint:typecheck": "tsc",
  18. "lint": "run-p lint:*",
  19. "version": "yarn version --no-git-tag-version"
  20. },
  21. "dependencies": {
  22. "@growi/core": "link:../core"
  23. },
  24. "devDependencies": {
  25. "@marp-team/marp-core": "^3.6.0",
  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": "^13",
  32. "react": "^18.2.0",
  33. "react-dom": "^18.2.0",
  34. "react-markdown": "^8.0.7"
  35. }
  36. }