package.json 730 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@growi/page-split",
  3. "version": "1.0.0",
  4. "license": "MIT",
  5. "private": "true",
  6. "keywords": [
  7. "unified",
  8. "remark",
  9. "remark-plugin",
  10. "plugin",
  11. "mdast",
  12. "markdown"
  13. ],
  14. "type": "module",
  15. "module": "dist/index.js",
  16. "types": "dist/index.d.ts",
  17. "files": [
  18. "dist"
  19. ],
  20. "scripts": {
  21. "build": "vite build",
  22. "clean": "shx rm -rf dist",
  23. "dev": "vite build --mode dev",
  24. "watch": "yarn dev -w --emptyOutDir=false",
  25. "lint:js": "yarn eslint **/*.{js,jsx,ts,tsx}",
  26. "lint:styles": "stylelint --allow-empty-input \"src/**/*.scss\" \"src/**/*.css\"",
  27. "lint:typecheck": "tsc",
  28. "lint": "run-p lint:*"
  29. },
  30. "dependencies": {
  31. "remark-parse": "^11.0.0"
  32. }
  33. }