-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (53 loc) · 1.48 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
{
"name": "insertnumbers",
"displayName": "Insert Numbers",
"description": "Insert increasing numbers",
"icon": "images/icon.ico",
"version": "0.9.1",
"publisher": "Asuka",
"license": "SEE LICENSE IN LICENSE.TXT",
"homepage": "https://github.com/Inori/vscode-InsertNumbers",
"galleryBanner": {
"color": "#0000FF",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/Inori/vscode-InsertNumbers.git"
},
"bugs": {
"url": "https://github.com/Inori/vscode-InsertNumbers/issues",
"email": "[email protected]"
},
"categories": [
"Other"
],
"engines": {
"vscode": "^1.0.0"
},
"activationEvents": [
"onCommand:extension.insertNumbers"
],
"main": "./out/src/extension",
"contributes": {
"commands": [{
"command": "extension.insertNumbers",
"title": "Insert Numbers"
}],
"keybindings": [{
"command": "extension.insertNumbers",
"key": "ctrl+alt+n",
"mac": "cmd+alt+n",
"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.8.5",
"vscode": "^0.11.0"
}
}