-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.79 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
{
"name": "selectline-statusbar",
"displayName": "Select Line Status Bar",
"description": "Displays selected lines count in status bar",
"version": "0.0.2",
"publisher": "tomoki1207",
"icon": "icon.svg",
"repository": {
"type": "git",
"url": "https://github.com/tomoki1207/selectline-statusbar"
},
"bugs": {
"url": "https://github.com/tomoki1207/selectline-statusbar/issues"
},
"license": "MIT",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension",
"contributes": {
"commands": [],
"configuration": {
"type": "object",
"title": "Select line configuration",
"properties": {
"selectline.displayFormat": {
"type": "string",
"default": "Selected %d Lines",
"description": "Display format: according to https://nodejs.org/api/util.html#util_util_format_format"
},
"selectline.alignment": {
"type": "string",
"enum": [
"left", "right"
],
"default": "left",
"description": "Controls the alignment of the selected lines. It can either show on the left or right of the status bar."
},
"selectline.statusbarPriority": {
"type": "number",
"default": 100,
"description": "The priority of the selected lines in status bar. Higher values mean the item should be shown more to the left."
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"package": "vsce package"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"eslint": "^3.7.1",
"mocha": "^2.3.3",
"typescript": "^2.0.3",
"vsce": "^1.15.0",
"vscode": "^1.0.0"
}
}