package.json 760 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@growi/presentation",
  3. "version": "6.0.6-RC.0",
  4. "description": "GROWI plugin for presentation",
  5. "license": "MIT",
  6. "keywords": [
  7. "growi",
  8. "growi-plugin"
  9. ],
  10. "main": "dist/index.js",
  11. "files": [
  12. "dist"
  13. ],
  14. "scripts": {
  15. "build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
  16. "clean": "npx -y shx rm -rf dist",
  17. "lint:js": "eslint **/*.{js,jsx,ts,tsx}",
  18. "lint:styles": "stylelint --allow-empty-input src/**/*.scss src/**/*.css",
  19. "lint": "run-p lint:*",
  20. "test": ""
  21. },
  22. "dependencies": {
  23. "@growi/core": "^6.0.6-RC.0"
  24. },
  25. "devDependencies": {
  26. "@marp-team/marp-core": "^3.4.2",
  27. "eslint-plugin-regex": "^1.8.0",
  28. "react": "^18.2.0",
  29. "react-dom": "^18.2.0"
  30. }
  31. }