-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.87 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
{
"name": "ActiveFileInStatusBar",
"displayName": "Active File In StatusBar",
"description": "Add statusbar entry to show path for currently active file.",
"version": "1.0.3",
"publisher": "RoscoP",
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"icon": "media/icon.png",
"galleryBanner": {
"theme": "dark",
"color": "#614051"
},
"icon_attribution": "Icon made by [Anton Saputro](http://www.flaticon.com/authors/anton-saputro) from [Flaticon](http://www.flaticon.com) is licensed by [Creative Commons BY 3.0](http://creativecommons.org/licenses/by/3.0/)",
"main": "./extension",
"contributes": {
"commands": [{
"command": "extension.ActiveFileInStatusBarClicked",
"title": "ActiveFileInStatusBarClicked"
}],
"configuration": {
"type": "object",
"title": "ActiveFileInStatusBar configuration",
"properties": {
"ActiveFileInStatusBar.enable": {
"type": "boolean",
"default": true,
"description": "Enable/Disable ActiveFileInStatusBar"
},
"ActiveFileInStatusBar.fullpath": {
"type": "boolean",
"default": true,
"description": "Show fullpath or relative path in status bar."
},
"ActiveFileInStatusBar.revealFile": {
"type": "boolean",
"default": false,
"description": "Reveal the active file in the file system."
},
"ActiveFileInStatusBar.color": {
"type": "string",
"default": "",
"description": "Set text color for the filename in the status bar."
}
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/RoscoP/ActiveFileInStatusBar"
},
"dependencies": {
"copy-paste": "^1.2.0"
},
"devDependencies": {
"vscode": "0.10.x"
}
}