forked from microsoft/vscode-hexeditor
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
158 lines (158 loc) · 3.97 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "hexeditor",
"displayName": "Hex Editor with Tags",
"description": "A mod of the Hex Editor by Microsoft with added tag support",
"version": "1.8.2",
"publisher": "notblank00",
"repository": {
"type": "git",
"url": "https://github.com/notblank00/vscode-hexeditor"
},
"bugs": {
"url": "https://github.com/notblank00/vscode-hexeditor/issues"
},
"license": "MIT",
"engines": {
"vscode": "^1.56.0"
},
"categories": [
"Other"
],
"icon": "icon.png",
"activationEvents": [
"onView:hexEditor.dataInspectorView",
"onCustomEditor:hexEditor.hexedit",
"onCommand:hexEditor.openFile"
],
"main": "./dist/extension.js",
"browser": "./dist/web/extension.js",
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"contributes": {
"configuration": [
{
"title": "Hex Editor",
"properties": {
"hexeditor.maxFileSize": {
"type": "number",
"minimum": 0,
"default": 10,
"description": "The max file size (in MB) that the editor will try to open before warning you."
},
"hexeditor.dataInspector.autoReveal": {
"type": "boolean",
"default": true,
"description": "Whether to auto reveal the data inspector when the hex editor is opened."
},
"hexeditor.defaultEndianness": {
"type": "string",
"default": "little",
"enum": [
"little",
"big"
],
"description": "The endianness selected when loading the editor."
}
}
}
],
"customEditors": [
{
"viewType": "hexEditor.hexedit",
"displayName": "Hex Editor",
"selector": [
{
"filenamePattern": "*"
}
],
"priority": "option"
}
],
"commands": [
{
"command": "hexEditor.openFile",
"title": "Hex Editor: Open Active File in Hex Editor"
},
{
"command": "hexEditor.goToOffset",
"title": "Hex Editor: Go To Offset"
},
{
"command": "hexEditor.addTag",
"title": "Hex Editor: Add Tag At Selection"
},
{
"command": "hexEditor.goToTag",
"title": "Hex Editor: Go To Tag"
},
{
"command": "hexEditor.removeTag",
"title": "Hex Editor: Remove Tag"
},
{
"command": "hexEditor.removeTagAtSelection",
"title": "Hex Editor: Remove Tag At Selection"
},
{
"command": "hexEditor.removeAllTags",
"title": "Hex Editor: Remove All Tags"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "hexExplorer",
"title": "Hex Editor",
"icon": "panel-icon.svg",
"when": "hexEditor:openEditor"
}
]
},
"views": {
"hexExplorer": [
{
"type": "webview",
"id": "hexEditor.dataInspectorView",
"name": "Data Inspector",
"when": "hexEditor:openEditor"
}
]
},
"menus": {
"commandPalette": [
{
"command": "hexEditor.goToOffset",
"when": "hexEditor:openEditor"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -noEmit && node .esbuild.config.js",
"lint": "eslint src --ext ts",
"watch": "tsc -noEmit -watch"
},
"devDependencies": {
"@types/node": "^15.6.2",
"@types/vscode": "^1.56.0",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"esbuild": "^0.12.15",
"eslint": "^7.27.0",
"mocha": "^8.4.0",
"ts-loader": "^8.0.14",
"typescript": "^4.3.2"
},
"dependencies": {
"@vscode/codicons": "0.0.20",
"vscode-extension-telemetry": "0.3.2",
"webpack": "^5.59.1",
"webpack-watch": "^0.2.0"
}
}