123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "name": "@honkit/honkit-plugin-fontsettings",
- "description": "Fonts and colors themes settings the website for a better reading experience",
- "main": "index.js",
- "version": "6.0.2",
- "license": "Apache-2.0",
- "homepage": "https://github.com/honkit/honkit",
- "engines": {
- "gitbook": ">=2.4.0"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/honkit/honkit.git"
- },
- "bugs": {
- "url": "https://github.com/honkit/honkit/issues"
- },
- "publishConfig": {
- "access": "public"
- },
- "devDependencies": {
- "@honkit/cleaning-tools": "6.0.2",
- "eslint": "^9.12.0",
- "less": "^4.2.0"
- },
- "scripts": {
- "build": "npm run build:css --scripts-prepend-node-path",
- "build:css": "lessc ./less/website.less ./assets/website.css",
- "prepublish": "npm run build",
- "lint": "eslint ."
- },
- "gitbook": {
- "properties": {
- "theme": {
- "type": "string",
- "default": "white",
- "title": "Default theme",
- "enum": [
- "white",
- "sepia",
- "night"
- ]
- },
- "family": {
- "type": "string",
- "default": "sans",
- "title": "Default font family",
- "enum": [
- "sans",
- "serif"
- ]
- },
- "size": {
- "type": "number",
- "default": 2,
- "title": "Default font size",
- "min": 1,
- "max": 4
- }
- }
- },
- "gitHead": "9dcd51c588177ee3a684788c633a67b82dea82a5"
- }
|