summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-plugin-highlight/package.json
blob: a3e4ca1456f1b61c8e5eb302fea0af6bc7e675ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
  "name": "gitbook-plugin-highlight",
  "title": "Syntax Highlighting",
  "description": "Highlight code blocks in your pages.",
  "main": "index.js",
  "browser": "./_assets/plugin.js",
  "version": "4.0.0-alpha.4",
  "dependencies": {
    "highlight.js": "9.9.0"
  },
  "devDependencies": {
    "gitbook-plugin": "^4.0.0-alpha.4"
  },
  "engines": {
    "gitbook": ">=4.0.0-alpha.0"
  },
  "scripts": {
    "build-js": "gitbook-plugin build ./src/index.js ./_assets/plugin.js",
    "prepublish": "npm run build-js"
  },
  "homepage": "https://github.com/GitbookIO/gitbook",
  "repository": {
    "type": "git",
    "url": "https://github.com/GitbookIO/gitbook.git"
  },
  "bugs": {
    "url": "https://github.com/GitbookIO/gitbook/issues"
  },
  "gitbook": {
    "properties": {
      "theme": {
        "type": "string",
        "title": "Theme",
        "description": "Color scheme for syntax highlighting.",
        "default": "tomorrow",
        "enum": [
            "tomorrow"
        ]
      }
    }
}
}