forked from davidmogar/gitbook-plugin-terminal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.7 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
64
65
66
67
68
69
{
"name": "gitbook-plugin-term",
"description": "Change code blocks to look more like a term",
"main": "index.js",
"license": "MIT",
"homepage": "https://github.com/CLIUtils/gitbook-plugin-term",
"version": "0.5.1",
"author": {
"name": "Henry Schreiner",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CLIUtils/gitbook-plugin-term.git"
},
"keywords": [
"gitbook",
"github",
"terminal",
"plugin"
],
"bugs": {
"url": "https://github.com/CLIUtils/gitbook-plugin-term/issues"
},
"engines": {
"gitbook": ">3.0.0"
},
"dependencies": {
"highlight.js": "9.8.0",
"xregexp": "3.2.0"
},
"gitbook": {
"properties": {
"copyButtons": {
"default": true,
"title": "Adds buttons to copy the commands",
"type": "boolean"
},
"fade": {
"default": true,
"title": "If true, the text will fade to highlight the command",
"type": "boolean"
},
"style": {
"default": "default",
"enum": [
"black",
"classic",
"flat",
"ubuntu",
"white",
"default"
],
"title": "Style for the term (defaults to 'default')",
"type": "string"
},
"prompt": {
"default": "(?<prompt>[^\\$^#^:]*)(?<pathsep>:?)(?<path>[^\\$^#]*?)(?<delimiter>[\\$#] )(?<command>.*)$",
"title": "Prompt to find and replace, must contain group named command",
"type": "string"
},
"lineStyles":{
"default": true,
"title": "Process beginning of line messages (warn, error)",
"type":"boolean"
}
}
}
}