-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.32 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": "sublime-commands",
"displayName": "Sublime Commands",
"description": "Adds commands from Sublime Text to VS Code: Transpose, Expand Selection to Line, Split into Lines, Join Lines",
"version": "0.1.0",
"publisher": "Zarel",
"engines": {
"vscode": "^0.10.6"
},
"categories": [
"Other"
],
"license": "MIT",
"activationEvents": [
"onCommand:extension.transpose",
"onCommand:extension.expandToLine",
"onCommand:extension.splitIntoLines",
"onCommand:extension.joinLines"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.transpose",
"title": "Transpose"
},
{
"command": "extension.expandToLine",
"title": "Expand Selection to Line"
},
{
"command": "extension.splitIntoLines",
"title": "Split into Lines"
},
{
"command": "extension.joinLines",
"title": "Join Lines"
}
]
},
"scripts": {
"vscode:prepublish": "npm install && node ./node_modules/vscode/bin/compile && npm prune --production",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.7.5",
"vscode": "^0.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Zarel/vscode-sublime-commands.git"
}
}