-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
92 lines (92 loc) · 2.02 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
{
"name": "ecdc",
"description": "An extension for Visual Studio Code that allows you to quickly convert text selections.",
"publisher": "mitchdenny",
"displayName": "Encode Decode",
"version": "1.8.0",
"keywords": [
"encode",
"decode",
"base64"
],
"icon": "ecdc.png",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mitchdenny/ecdc/issues"
},
"homepage": "https://github.com/mitchdenny/ecdc/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/mitchdenny/ecdc.git"
},
"activationEvents": [
"onCommand:extension.convertSelection",
"onCommand:extension.subtleConvertSelection"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.subtleConvertSelection",
"title": "Convert Selection"
},
{
"command": "extension.convertSelection",
"title": "Encode/Decode: Convert Selection"
}
],
"keybindings": [
{
"command": "extension.convertSelection",
"key": "ctrl+alt-c",
"mac": "cmd+alt-c",
"when": "editorTextFocus"
}
],
"menus": {
"editor/context": [
{
"command": "extension.subtleConvertSelection",
"when": "editorHasSelection",
"group": "1_modification"
}
],
"commandPalette": [
{
"command": "extension.convertSelection",
"when": "editorHasSelection",
"group": "1_modification"
}
]
}
},
"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": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.48",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"vsce": "1.54.0",
"vscode": "^1.1.37"
},
"dependencies": {
"encode32": "^1.1.0",
"ent": "^2.2.0",
"entities": "^2.1.0",
"html-entities": "2.0.2",
"js-yaml": "^3.13.1",
"unicode-escape": "^0.1.0"
}
}