package.json 2.1 KB
Newer Older
S
Samy Pessé 已提交
1
{
J
Johan Preynat 已提交
2
  "name": "gitbook-plugin-theme-default",
S
Samy Pesse 已提交
3
  "description": "Default theme for GitBook",
J
Johan Preynat 已提交
4
  "main": "./index.js",
S
Samy Pessé 已提交
5
  "version": "1.0.5",
J
Johan Preynat 已提交
6
  "engines": {
S
Samy Pesse 已提交
7
    "gitbook": ">=3.0.0"
J
Johan Preynat 已提交
8 9 10
  },
  "dependencies": {},
  "devDependencies": {
J
Johan Preynat 已提交
11 12 13
    "browserify": "13.1.0",
    "eslint": "3.6.1",
    "font-awesome": "4.6.3",
14
    "preboot": "git+https://github.com/mdo/preboot.git#4aab4edd85f076d50609cbe28e4fe66cc0771701",
J
Johan Preynat 已提交
15 16
    "gitbook-logos": "git+https://github.com/GitbookIO/logos.git#2.0.2",
    "gitbook-markdown-css": "1.0.1",
J
Johan Preynat 已提交
17 18
    "jquery": "3.1.1",
    "less": "2.7.1",
J
Johan Preynat 已提交
19
    "less-plugin-clean-css": "1.5.1",
J
Johan Preynat 已提交
20 21
    "mousetrap": "1.6.0",
    "uglify-js": "2.7.3"
J
Johan Preynat 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
  },
  "scripts": {
    "prepublish": "./src/build.sh"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/GitbookIO/theme-default.git"
  },
  "author": "FriendCode Inc. <contact@gitbook.com>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/GitbookIO/theme-default/issues"
  },
  "contributors": [
    {
      "name": "Samy Pessé",
      "email": "samy@gitbook.com"
    }
  ],
  "gitbook": {
    "properties": {
      "styles": {
        "type": "object",
        "title": "Custom Stylesheets",
S
Samy Pessé 已提交
46
        "properties": {
J
Johan Preynat 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
          "website": {
            "title": "Stylesheet for website output",
            "default": "styles/website.css"
          },
          "pdf": {
            "title": "Stylesheet for PDF output",
            "default": "styles/pdf.css"
          },
          "epub": {
            "title": "Stylesheet for ePub output",
            "default": "styles/epub.css"
          },
          "mobi": {
            "title": "Stylesheet for Mobi output",
            "default": "styles/mobi.css"
          },
          "ebook": {
            "title": "Stylesheet for ebook outputs (PDF, ePub, Mobi)",
            "default": "styles/ebook.css"
          },
          "print": {
            "title": "Stylesheet to replace default ebook css",
            "default": "styles/print.css"
          }
S
Samy Pessé 已提交
71
        }
S
Samy Pesse 已提交
72 73
      },
      "showLevel": {
S
Soreine 已提交
74
        "type": "boolean",
S
Samy Pesse 已提交
75 76
        "title": "Show level indicator in TOC",
        "default": false
J
Johan Preynat 已提交
77
      }
S
Samy Pessé 已提交
78
    }
J
Johan Preynat 已提交
79 80
  }
}