package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "@growi/plugin-attachment-refs",
  3. "version": "5.1.4-RC.0",
  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/cjs/index.js",
  11. "module": "dist/esm/index.js",
  12. "files": [
  13. "dist"
  14. ],
  15. "scripts": {
  16. "build": "run-p build:*",
  17. "build:cjs": "tsc -p tsconfig.build.cjs.json && tsc-alias -p tsconfig.build.cjs.json",
  18. "build:esm": "tsc -p tsconfig.build.esm.json && tsc-alias -p tsconfig.build.esm.json",
  19. "clean": "npx -y shx rm -rf dist",
  20. "lint:js": "eslint **/*.{js,jsx,ts,tsx}",
  21. "lint:styles": "stylelint src/**/*.scss src/**/*.css",
  22. "lint": "run-p lint:*",
  23. "test": ""
  24. },
  25. "dependencies": {
  26. "browser-bunyan": "^1.6.3",
  27. "bunyan": "^1.8.15",
  28. "http-errors": "^2.0.0",
  29. "react-images": "~1.0.0",
  30. "react-motion": "^0.5.2",
  31. "universal-bunyan": "^0.9.2"
  32. },
  33. "devDependencies": {
  34. "eslint-plugin-regex": "^1.8.0",
  35. "npm-run-all": "^4.1.5",
  36. "react": "^18.2.0",
  37. "react-dom": "^18.2.0"
  38. }
  39. }