package.json 709 B

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