package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@growi/plugin-attachment-refs",
  3. "version": "6.0.0-RC.9",
  4. "description": "GROWI Plugin to add ref/refimg/refs/refsimg tags",
  5. "license": "MIT",
  6. "keywords": [
  7. "growi",
  8. "growi-plugin"
  9. ],
  10. "main": "dist/index.js",
  11. "module": "dist/index.mjs",
  12. "types": "dist/index.d.ts",
  13. "files": [
  14. "dist"
  15. ],
  16. "scripts": {
  17. "build": "vite build",
  18. "clean": "npx -y shx rm -rf dist",
  19. "dev": "vite build --mode dev",
  20. "watch": "yarn dev -w --emptyOutDir=false",
  21. "lint:js": "yarn eslint **/*.{js,jsx,ts,tsx}",
  22. "lint:styles": "stylelint src/**/*.scss src/**/*.css",
  23. "lint:typecheck": "tsc",
  24. "lint": "run-p lint:*",
  25. "test": ""
  26. },
  27. "dependencies": {
  28. "browser-bunyan": "^1.6.3",
  29. "bunyan": "^1.8.15",
  30. "http-errors": "^2.0.0",
  31. "react-images": "~1.0.0",
  32. "react-motion": "^0.5.2",
  33. "universal-bunyan": "^0.9.2"
  34. },
  35. "devDependencies": {
  36. "eslint-plugin-regex": "^1.8.0",
  37. "npm-run-all": "^4.1.5",
  38. "react": "^18.2.0",
  39. "react-dom": "^18.2.0"
  40. }
  41. }