-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.83 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
{
"author": "Vincent Hiribarren",
"publisher": "vhiribarren",
"name": "tetromino",
"displayName": "Tetromino",
"description": "Another falling block game to waste time on VSCode",
"categories": ["Other"],
"keywords": [
"tetromino",
"tetris",
"game",
"fun",
"block",
"falling"
],
"homepage": "https://github.com/vhiribarren/vscode-tetromino",
"repository": {
"type": "git",
"url": "https://github.com/vhiribarren/vscode-tetromino.git"
},
"license": "MIT",
"icon": "materials/icon.png",
"version": "1.0.0",
"main": "./lib/extension.js",
"engines": {
"vscode": "^1.34.0"
},
"activationEvents": [
"onCommand:tetromino.play"
],
"contributes": {
"commands": [{
"command": "tetromino.play",
"title": "Tetromino"
}],
"keybindings": [{
"command": "tetromino.command.left",
"key": "left",
"when": "focusedView == '' && tetromino.panel.active"
},
{
"command": "tetromino.command.right",
"key": "right",
"when": "focusedView == '' && tetromino.panel.active"
},
{
"command": "tetromino.command.rotateRight",
"key": "up",
"when": "focusedView == '' && tetromino.panel.active"
},
{
"command": "tetromino.command.down",
"key": "down",
"when": "focusedView == '' && tetromino.panel.active"
},
{
"command": "tetromino.command.rotateRight",
"key": "space",
"when": "focusedView == '' && tetromino.panel.active"
},
{
"command": "tetromino.command.rotateLeft",
"key": "x",
"when": "focusedView == '' && tetromino.panel.active"
},
{
"command": "tetromino.command.pause",
"key": "p",
"when": "focusedView == '' && tetromino.panel.active"
}
]
}
}