2
0

package.json 991 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@growi/remark-lsx",
  3. "version": "6.0.8-RC.0",
  4. "description": "GROWI plugin to list pages",
  5. "license": "MIT",
  6. "keywords": ["growi", "growi-plugin"],
  7. "main": "dist/index.js",
  8. "exports": {
  9. "./components": "./dist/components/index.js",
  10. "./services/renderer": "./dist/services/renderer/index.js",
  11. "./server/routes": "./dist/server/routes/index.js"
  12. },
  13. "files": ["dist"],
  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.8-RC.0",
  24. "@growi/remark-growi-directive": "^6.0.8-RC.0",
  25. "@growi/ui": "^6.0.8-RC.0",
  26. "swr": "^2.0.3"
  27. },
  28. "devDependencies": {
  29. "eslint-plugin-regex": "^1.8.0",
  30. "react": "^18.2.0",
  31. "react-dom": "^18.2.0"
  32. }
  33. }