2
0

package.json 730 B

1234567891011121314151617181920212223242526
  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. "swr": "^1.3.0"
  20. },
  21. "devDependencies": {
  22. "eslint-plugin-regex": "^1.8.0",
  23. "react": "^18.2.0",
  24. "react-dom": "^18.2.0"
  25. }
  26. }