-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 1.82 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 1.82 KB
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
{
"name": "android-xml-editor",
"displayName": "Android XML Editor",
"description": "Android XML Editor",
"icon": "android_xml.jpg",
"version": "0.0.1",
"publisher": "TotalCross",
"engines": {
"vscode": "^1.47.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"repository": {
"type": "git",
"url": ""
},
"main": "./out/extension.js",
"contributes": {
"configurationDefaults": {
"[xml]": {
"editor.mouseWheelZoom": true
}
},
"commands": [
{
"command": "android-xml-editor.open",
"title": "Open",
"category": "Android XML Editor"
}
],
"keybindings": [
{
"command": "workbench.action.decreaseViewSize",
"key": "ctrl+alt+l",
"mac": "shift+cmd+f"
},
{
"command": "workbench.action.increaseViewSize",
"key": "ctrl+alt+f",
"mac": "shift+cmd+l"
},
{
"key": "ctrl+=",
"command": "editor.action.fontZoomIn"
},
{
"key": "ctrl+alt+=",
"command": "workbench.action.zoomIn"
},
{
"key": "ctrl+-",
"command": "editor.action.fontZoomOut"
},
{
"key": "ctrl+alt+-",
"command": "workbench.action.zoomOut"
},
{
"key": "ctrl+0",
"command": "editor.action.fontZoomReset"
},
{
"key": "ctrl+alt+0",
"command": "workbench.action.zoomReset"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -w -p ./"
},
"dependencies": {
"fast-xml-parser": "^3.17.6",
"fs-extra": "^9.1.0",
"jimp": "^0.16.1",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/node": "^14.11.8",
"@types/vscode": "^1.47.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"tsc": "^1.20150623.0",
"tslint": "^6.1.3",
"typescript": "^4.1.5"
}
}