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