package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@honkit/honkit-plugin-fontsettings",
  3. "description": "Fonts and colors themes settings the website for a better reading experience",
  4. "main": "index.js",
  5. "version": "6.0.2",
  6. "license": "Apache-2.0",
  7. "homepage": "https://github.com/honkit/honkit",
  8. "engines": {
  9. "gitbook": ">=2.4.0"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/honkit/honkit.git"
  14. },
  15. "bugs": {
  16. "url": "https://github.com/honkit/honkit/issues"
  17. },
  18. "publishConfig": {
  19. "access": "public"
  20. },
  21. "devDependencies": {
  22. "@honkit/cleaning-tools": "6.0.2",
  23. "eslint": "^9.12.0",
  24. "less": "^4.2.0"
  25. },
  26. "scripts": {
  27. "build": "npm run build:css --scripts-prepend-node-path",
  28. "build:css": "lessc ./less/website.less ./assets/website.css",
  29. "prepublish": "npm run build",
  30. "lint": "eslint ."
  31. },
  32. "gitbook": {
  33. "properties": {
  34. "theme": {
  35. "type": "string",
  36. "default": "white",
  37. "title": "Default theme",
  38. "enum": [
  39. "white",
  40. "sepia",
  41. "night"
  42. ]
  43. },
  44. "family": {
  45. "type": "string",
  46. "default": "sans",
  47. "title": "Default font family",
  48. "enum": [
  49. "sans",
  50. "serif"
  51. ]
  52. },
  53. "size": {
  54. "type": "number",
  55. "default": 2,
  56. "title": "Default font size",
  57. "min": 1,
  58. "max": 4
  59. }
  60. }
  61. },
  62. "gitHead": "9dcd51c588177ee3a684788c633a67b82dea82a5"
  63. }