forked from shanalikhan/code-settings-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (81 loc) · 2.07 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
{
"name": "code-settings-sync",
"displayName": "Visual Studio Code Settings Sync",
"description": "Synchronize Settings, Snippets, launch, keybindings files and extensions Across Multiple Machines using Github GIST.",
"version": "1.1.8",
"icon": "images/cloud.png",
"publisher": "Shan",
"author": {
"name": "Shan Khan",
"url": "http://shanalikhan.github.io"
},
"galleryBanner": {
"color": "#3B4859",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/shanalikhan/code-settings-sync.git"
},
"bugs": {
"url": "https://github.com/shanalikhan/code-settings-sync/issues",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.updateSettings",
"onCommand:extension.downloadSettings",
"onCommand:extension.resetSettings"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.downloadSettings",
"title": "Sync : Download Settings"
},
{
"command": "extension.updateSettings",
"title": "Sync : Update / Upload Settings"
},
{
"command": "extension.resetSettings",
"title": "Sync : Reset Sync Settings"
}
],
"keybindings": [
{
"key": "alt+shift+u",
"command": "extension.updateSettings",
"when": "editorTextFocus"
},
{
"key": "alt+shift+d",
"command": "extension.downloadSettings",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "^0.11.x"
},
"dependencies": {
"fs": "^0.0.2",
"github": "^0.2.4",
"open": "^0.0.5",
"temp": "^0.8.3",
"adm-zip": "^0.4.7",
"ncp": "^2.0.0"
}
}