-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 2.74 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "fish-read",
"version": "0.2.0",
"description": "实用的读书插件",
"publisher": "SoulFish",
"icon": "static/images/logo.jpeg",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "sjy",
"license": "ISC",
"engines": {
"vscode": "^1.49.1"
},
"activationEvents": [
"*"
],
"main": "./src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "fishread",
"properties": {
"fishread.book.pageSize": {
"type": "number",
"default": 1000,
"description": "每页展示字数"
},
"fishread.bookshelf.list": {
"type": "array",
"default": [],
"description": "书架列表(禁止编辑)"
}
}
},
"commands": [
{
"command": "fishread.openfile",
"title": "打开文件",
"icon": {
"light": "static/images/add.svg",
"dark": "static/images/add.svg"
}
},
{
"command": "fishread.bookshelf.refresh",
"title": "刷新书架",
"icon": {
"light": "static/images/refresh.svg",
"dark": "static/images/refresh.svg"
}
},
{
"command": "fishread.bookshelf.delete",
"title": "删除"
},
{
"command": "fishread.bookshelf.open",
"title": "打开"
},
{
"command": "fishread.book.nextPage",
"title": "下一页"
},
{
"command": "fishread.book.prevPage",
"title": "上一页"
}
],
"keybindings": [
{
"command": "fishread.book.nextPage",
"key": "ctrl+.",
"mac": "cmd+."
},
{
"command": "fishread.book.prevPage",
"key": "ctrl+,",
"mac": "cmd+,"
}
],
"menus": {
"view/title": [
{
"command": "fishread.openfile",
"group": "navigation"
},
{
"command": "fishread.bookshelf.refresh",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "fishread.bookshelf.delete"
},
{
"command": "fishread.bookshelf.open"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "fishread",
"title": "fishread",
"icon": "static/images/fish.svg"
}
]
},
"views": {
"fishread": [
{
"id": "bookshelf",
"name": "书架"
}
]
},
"viewsWelcome": [
{
"view": "bookshelf",
"contents": "欢迎使用\n[导入](command:fishread.openfile)"
}
]
},
"dependencies": {
"chardet": "^1.2.2"
}
}