-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.5 KB
/
package.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "gitbook-plugin-algolia",
"description": "Use Algolia as a backend for research",
"main": "index.js",
"version": "2.0.0",
"browser": "./_assets/plugin.js",
"dependencies": {
"gitbook-core": "^4.0.0",
"algoliasearch": "3.18.1"
},
"devDependencies": {
"gitbook-plugin": "^4.0.0",
"eslint": "3.7.1",
"eslint-config-gitbook": "1.4.0"
},
"engines": {
"gitbook": ">=4.0.0-alpha.0"
},
"scripts": {
"build-js": "gitbook-plugin build ./src/index.js ./_assets/plugin.js",
"prepublish": "npm run build-js"
},
"author": "GitBook Team <contact@gitbook.com>",
"contributors": [
{
"name": "Johan Preynat",
"email": "johan@gitbook.com"
}
],
"homepage": "https://github.com/GitbookIO/plugin-algolia",
"repository": {
"type": "git",
"url": "https://github.com/GitbookIO/plugin-algolia.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GitbookIO/plugin-algolia/issues"
},
"gitbook": {
"properties": {
"index": {
"type": "string",
"title": "Algolia index name",
"required": true
},
"applicationID": {
"type": "string",
"title": "Algolia Application ID",
"required": true
},
"publicKey": {
"type": "string",
"title": "Algolia Search-Only API Key",
"required": true
},
"freeAccount": {
"type": "bool",
"title": "Is your Algolia account free",
"default": true
}
}
}
}