-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
94 lines (94 loc) · 2.46 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "gitbook-plugin-flexible-alerts",
"version": "1.0.4",
"description": "GitBook plugin to convert blockquotes into beautiful and configurable alerts using preconfigured or own styles and alert types.",
"keywords": [
"gitbook",
"plugin",
"alert",
"blockquotes",
"quote",
"hint",
"callout"
],
"author": "Fabian Zankl",
"license": "MIT",
"engines": {
"gitbook": ">=2.0.0"
},
"main": "index.js",
"scripts": {
"build": "rollup -c",
"clean": "rimraf dist/*",
"prepare": "npm run clean && npm run build",
"start": "npm run build -- -w"
},
"homepage": "https://github.com/zanfab/gitbook-plugin-flexible-alerts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zanfab/gitbook-plugin-flexible-alerts.git"
},
"bugs": {
"url": "https://github.com/zanfab/gitbook-plugin-flexible-alerts/issues"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-url": "^7.0.0",
"eslint": "^8.22.0",
"lodash.merge": "^4.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.78.0",
"rollup-copy-plugin": "^0.1.0",
"rollup-plugin-copy-assets": "^2.0.3",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^7.0.2"
},
"gitbook": {
"properties": {
"style": {
"type": "string",
"title": "Style used for alerts.",
"default": "callout"
},
"note": {
"type": "object",
"title": "Configuration for alerts of type 'note'",
"default": {
"label": "Note",
"icon": "fa fa-info-circle",
"className": "info"
}
},
"tip": {
"type": "object",
"title": "Configuration for alerts of type 'tip'",
"default": {
"label": "Tip",
"icon": "fa fa-lightbulb-o",
"className": "tip"
}
},
"warning": {
"type": "object",
"title": "Configuration for alerts of type 'warning'",
"default": {
"label": "Warning",
"icon": "fa fa-exclamation-triangle",
"className": "warning"
}
},
"danger": {
"type": "object",
"title": "Configuration for alerts of type 'danger'",
"default": {
"label": "Attention",
"icon": "fa fa-ban",
"className": "danger"
}
}
}
}
}