package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@growi/remark-lsx",
  3. "version": "1.0.0",
  4. "description": "Remark plugin to list pages",
  5. "license": "MIT",
  6. "private": true,
  7. "keywords": [
  8. "growi",
  9. "growi-plugin"
  10. ],
  11. "files": [
  12. "dist"
  13. ],
  14. "type": "module",
  15. "scripts": {
  16. "build": "run-p build:*",
  17. "build:client": "vite build -c vite.client.config.ts",
  18. "build:server": "vite build -c vite.server.config.ts",
  19. "clean": "shx rm -rf dist",
  20. "dev": "run-p dev:*",
  21. "dev:client": "vite build -c vite.client.config.ts --mode dev",
  22. "dev:server": "vite build -c vite.server.config.ts --mode dev",
  23. "watch": "run-p watch:*",
  24. "watch:client": "pnpm run dev:client -w --emptyOutDir=false",
  25. "watch:server": "pnpm run dev:server -w --emptyOutDir=false",
  26. "lint:biome": "biome check",
  27. "lint:styles": "stylelint --allow-empty-input \"src/**/*.scss\" \"src/**/*.css\"",
  28. "lint:typecheck": "tsgo --noEmit",
  29. "lint": "run-p lint:*",
  30. "test": "vitest run --coverage"
  31. },
  32. "// comments for dependencies": {},
  33. "dependencies": {
  34. "@growi/core": "workspace:^",
  35. "@growi/remark-growi-directive": "workspace:^",
  36. "@growi/ui": "workspace:^",
  37. "express": "^4.20.0",
  38. "express-validator": "^6.14.0",
  39. "http-errors": "^2.0.0",
  40. "mongoose": "^6.13.6",
  41. "swr": "^2.3.2",
  42. "xss": "^1.0.15"
  43. },
  44. "devDependencies": {
  45. "@types/express": "^4",
  46. "@types/hast": "^3.0.4",
  47. "axios": "^1.11.0",
  48. "hast-util-sanitize": "^5.0.1",
  49. "hast-util-select": "^6.0.2",
  50. "is-absolute-url": "^4.0.1",
  51. "jsdom": "^26.1.0",
  52. "unified": "^11.0.0",
  53. "unist-util-visit": "^5.0.0"
  54. },
  55. "peerDependencies": {
  56. "next": "^16",
  57. "react": "^18.2.0",
  58. "react-dom": "^18.2.0"
  59. }
  60. }