package.json 970 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@growi/presentation",
  3. "version": "6.1.0-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. },
  20. "dependencies": {
  21. "@growi/core": "^6.1.0-RC.0"
  22. },
  23. "devDependencies": {
  24. "@marp-team/marp-core": "^3.4.2",
  25. "@types/reveal.js": "^4.4.1",
  26. "eslint-plugin-regex": "^1.8.0",
  27. "reveal.js": "^4.4.0"
  28. },
  29. "peerDependencies": {
  30. "next": "^13",
  31. "react": "^18.2.0",
  32. "react-dom": "^18.2.0",
  33. "react-markdown": "^8.0.7"
  34. }
  35. }