package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@growi/presentation",
  3. "version": "1.0.0",
  4. "description": "A package for GROWI presentation feature",
  5. "license": "MIT",
  6. "private": "true",
  7. "keywords": [
  8. "growi",
  9. "growi-plugin"
  10. ],
  11. "module": "dist/presentation.js",
  12. "types": "dist/index.d.ts",
  13. "files": [
  14. "dist"
  15. ],
  16. "type": "module",
  17. "exports": {
  18. "./dist/client": {
  19. "import": "./dist/client/index.js"
  20. },
  21. "./dist/client/services/sanitize-option": {
  22. "import": "./dist/client/services/sanitize-option.js"
  23. },
  24. "./dist/services": {
  25. "import": "./dist/services/index.js"
  26. },
  27. "./dist/style.css": {
  28. "import": "./dist/style.css"
  29. }
  30. },
  31. "scripts": {
  32. "build": "vite build",
  33. "build:src": "vite build",
  34. "build:vendor-styles": "vite build --config vite.vendor-styles.ts",
  35. "clean": "shx rm -rf dist",
  36. "dev": "vite build --mode dev",
  37. "watch": "pnpm run dev -w --emptyOutDir=false",
  38. "lint:biome": "biome check",
  39. "lint:styles": "stylelint --allow-empty-input \"src/**/*.scss\" \"src/**/*.css\"",
  40. "lint:typecheck": "tsgo --noEmit",
  41. "lint": "run-p lint:*"
  42. },
  43. "dependencies": {
  44. },
  45. "devDependencies": {
  46. "@marp-team/marp-core": "^3.9.1",
  47. "@marp-team/marpit": "^2.6.1",
  48. "@types/mdast": "^4.0.4",
  49. "@types/reveal.js": "^4.4.1",
  50. "@types/unist": "^3.0.3",
  51. "hast-util-sanitize": "^5.0.1",
  52. "hast-util-select": "^6.0.2",
  53. "mdast-util-frontmatter": "^2.0.1",
  54. "mdast-util-gfm": "^3.0.0",
  55. "mdast-util-to-markdown": "^2.1.0",
  56. "react-markdown": "^9.0.1",
  57. "remark-frontmatter": "^5.0.0",
  58. "remark-parse": "^11.0.0",
  59. "remark-stringify": "^11.0.0",
  60. "reveal.js": "^4.4.0",
  61. "unified": "^11.0.0",
  62. "unist-util-find-after": "^5.0.0",
  63. "unist-util-visit": "^5.0.0"
  64. },
  65. "peerDependencies": {
  66. "next": "^14 || ^15",
  67. "react": "^18.2.0",
  68. "react-dom": "^18.2.0"
  69. }
  70. }