-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
127 lines (127 loc) · 3.41 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "vscode-hacker-typer",
"displayName": "VSCode HackerTyper",
"description": "Hacker Typer extension for looking cool while live coding",
"version": "0.1.1",
"publisher": "jevakallio",
"author": {
"name": "Jani Eväkallio"
},
"license": "MIT",
"engines": {
"vscode": "^1.27.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jevakallio/vscode-hacker-typer"
},
"icon": "docs/hackertyper-icon.png",
"galleryBanner": {
"color": "#1D1D1D",
"theme": "dark"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:jevakallio.vscode-hacker-typer.recordMacro",
"onCommand:jevakallio.vscode-hacker-typer.playMacro",
"onCommand:jevakallio.vscode-hacker-typer.deleteMacro"
],
"main": "./out/extension",
"contributes": {
"keybindings": [
{
"command": "jevakallio.vscode-hacker-typer.backspace",
"when": "editorTextFocus",
"key": "cmd+shift+backspace"
},
{
"command": "jevakallio.vscode-hacker-typer.recordMacro",
"when": "editorTextFocus",
"key": "cmd+shift+t r"
},
{
"command": "jevakallio.vscode-hacker-typer.playMacro",
"key": "cmd+shift+t p"
},
{
"command": "jevakallio.vscode-hacker-typer.saveMacro",
"key": "cmd+shift+t s"
},
{
"command": "jevakallio.vscode-hacker-typer.insertStop",
"key": "cmd+shift+t i"
},
{
"command": "jevakallio.vscode-hacker-typer.insertNamedStop",
"key": "cmd+shift+t n"
},
{
"command": "jevakallio.vscode-hacker-typer.exitMacro",
"key": "cmd+shift+t e"
}
],
"commands": [
{
"command": "jevakallio.vscode-hacker-typer.recordMacro",
"title": "Record Macro",
"category": "HackerTyper"
},
{
"command": "jevakallio.vscode-hacker-typer.playMacro",
"title": "Play Macro",
"category": "HackerTyper"
},
{
"command": "jevakallio.vscode-hacker-typer.saveMacro",
"title": "Save Macro",
"category": "HackerTyper"
},
{
"command": "jevakallio.vscode-hacker-typer.removeMacro",
"title": "Remove Macro",
"category": "HackerTyper"
},
{
"command": "jevakallio.vscode-hacker-typer.insertStop",
"title": "Insert Soft Stop Point",
"category": "HackerTyper"
},
{
"command": "jevakallio.vscode-hacker-typer.insertNamedStop",
"title": "Insert Named Stop Point",
"category": "HackerTyper"
},
{
"command": "jevakallio.vscode-hacker-typer.backspace",
"title": "Erase Previous Frame",
"category": "HackerTyper"
},
{
"command": "jevakallio.vscode-hacker-typer.exitMacro",
"title": "Exit Macro",
"category": "HackerTyper"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "1.1.33",
"tslint": "^5.8.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42",
"@types/promise-queue": "^2.2.0"
},
"dependencies": {
"promise-queue": "^2.2.5",
"vscode-cache": "^0.3.0"
}
}