summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-plugin-lunr/package.json
blob: a5e5d61bf79927e79d4a3a350df777767ad287c0 (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
43
44
{
  "name": "gitbook-plugin-lunr",
  "description": "Static and local index for search in GitBook",
  "main": "index.js",
  "browser": "./_assets/theme.js",
  "version": "1.2.0",
  "dependencies": {
    "gitbook-core": "^0.0.0",
    "html-entities": "1.2.0",
    "lunr": "0.5.12"
  },
  "devDependencies": {
    "gitbook-plugin": "*"
  },
  "engines": {
    "gitbook": ">=3.0.0"
  },
  "gitbook": {
    "properties": {
        "maxIndexSize": {
            "type": "number",
            "title": "Limit size for the index",
            "default": 1000000
        },
        "ignoreSpecialCharacters": {
            "type": "boolean",
            "title": "Ignore special characters in words",
            "default": false
        }
    }
  },
  "scripts": {
    "build-js": "gitbook-plugin build ./src/index.js ./_assets/theme.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"
  }
}