-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
95 lines (95 loc) · 2.62 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
95
{
"name": "gitbook-kit",
"displayName": "Gitbook kit",
"description": "Extension to makes VSCode Markdown Editor for Gitbook",
"version": "0.6.1",
"publisher": "hoyt-tian",
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"workspaceContains:./SUMMARY.md"
],
"main": "./src/index",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "gitbook-explorer",
"title": "Gitbook Explorer",
"icon": "book.svg"
}
]
},
"views": {
"gitbook-explorer": [
{
"id": "bookstruct",
"name": "Book Structure",
"when": "showOutline"
}
]
},
"commands": [
{
"command": "gitbook.addEntry",
"title": "Add"
},
{
"command": "gitbook.renameEntry",
"title": "Rename"
},
{
"command": "gitbook.openDoc",
"title": "Edit"
},
{
"command": "gitbook.editSummary",
"title": "Edit Summary.md"
}
],
"menus": {
"view/item/context": [
{
"command": "gitbook.addEntry",
"when": "view == bookstruct"
},
{
"command": "gitbook.renameEntry",
"when": "view == bookstruct"
},
{
"command": "gitbook.openDoc",
"when": "view == bookstruct"
},
{
"command": "gitbook.editSummary",
"when": "view == bookstruct"
}
]
}
},
"scripts": {
"debug": "webpack --config webpack.debug.js",
"build": "webpack",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.5.2",
"vscode": "^1.1.5",
"mocha": "^3.5.0",
"eslint": "^4.6.1",
"@types/node": "^7.0.0",
"@types/mocha": "^2.2.42"
},
"repository": {
"type": "git",
"url": "https://github.com/hoyt-tian/vscode-gitbook-kit"
},
"homepage": "https://www.hoyt-tian.com/vscode-extension-for-gitbook/"
}