forked from APKLab/APKLab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
259 lines (259 loc) · 9.07 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
{
"name": "apklab",
"displayName": "APKLab",
"description": "Android Reverse-Engineering Workbench",
"publisher": "Surendrajat",
"version": "1.6.1",
"license": "SEE LICENSE IN LICENSE",
"icon": "assets/icon.png",
"engines": {
"vscode": "^1.45.0"
},
"homepage": "https://apklab.surendrajat.xyz",
"repository": {
"type": "git",
"url": "https://github.com/APKLab/APKLab.git"
},
"bugs": {
"url": "https://github.com/APKLab/APKLab/issues"
},
"extensionDependencies": [
"LoyieKing.smalise"
],
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"bytecode",
"disassembler",
"decompiler",
"re",
"android",
"apktool",
"jadx",
"apksigner",
"apk",
"reverse engineering",
"analysis",
"apk editor",
"smali",
"dalvik"
],
"activationEvents": [
"workspaceContains:apktool.yml",
"workspaceContains:quarkReport.json",
"onCommand:apklab.openApkFile",
"onCommand:apklab.emptyFrameworkDir"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "apklab.openApkFile",
"title": "APKLab: Open an APK"
},
{
"command": "apklab.rebuildApkFile",
"title": "APKLab: Rebuild the APK"
},
{
"command": "apklab.patchApkForHttps",
"title": "APKLab: Prepare for HTTPS inspection"
},
{
"command": "apklab.installApkFile",
"title": "APKLab: Install the APK"
},
{
"command": "apklab.rebuildAndInstallApkFile",
"title": "APKLab: Rebuild and Install the APK"
},
{
"command": "apklab.emptyFrameworkDir",
"title": "APKLab: Empty ApkTool Framework Dir"
},
{
"command": "apklab.quarkReport",
"title": "APKLab: Show Quark analysis report"
}
],
"menus": {
"commandPalette": [
{
"command": "apklab.rebuildApkFile",
"when": "false"
},
{
"command": "apklab.installApkFile",
"when": "false"
},
{
"command": "apklab.rebuildAndInstallApkFile",
"when": "false"
},
{
"command": "apklab.patchApkForHttps",
"when": "false"
},
{
"command": "apklab.quarkReport",
"when": "false"
}
],
"editor/context": [
{
"command": "apklab.rebuildApkFile",
"when": "resourceFilename == apktool.yml",
"group": "navigation"
},
{
"command": "apklab.rebuildAndInstallApkFile",
"when": "resourceFilename == apktool.yml",
"group": "navigation"
},
{
"command": "apklab.patchApkForHttps",
"when": "resourceFilename == apktool.yml",
"group": "navigation"
},
{
"command": "apklab.quarkReport",
"when": "resourceFilename == quarkReport.json",
"group": "navigation"
}
],
"editor/title": [
{
"command": "apklab.rebuildApkFile",
"when": "resourceFilename == apktool.yml"
},
{
"command": "apklab.rebuildAndInstallApkFile",
"when": "resourceFilename == apktool.yml"
},
{
"command": "apklab.patchApkForHttps",
"when": "resourceFilename == apktool.yml"
},
{
"command": "apklab.quarkReport",
"when": "resourceFilename == quarkReport.json"
}
],
"explorer/context": [
{
"command": "apklab.installApkFile",
"when": "resourceExtname == .apk",
"group": "navigation"
},
{
"command": "apklab.rebuildApkFile",
"when": "resourceFilename == apktool.yml",
"group": "navigation"
},
{
"command": "apklab.rebuildAndInstallApkFile",
"when": "resourceFilename == apktool.yml",
"group": "navigation"
},
{
"command": "apklab.patchApkForHttps",
"when": "resourceFilename == apktool.yml",
"group": "navigation"
},
{
"command": "apklab.quarkReport",
"when": "resourceFilename == quarkReport.json",
"group": "navigation"
}
]
},
"configuration": {
"title": "APKLab",
"properties": {
"apklab.apktoolPath": {
"type": "string",
"default": "",
"markdownDescription": "Put the absolute path of `apktool.jar` here if you want to use a non-latest version."
},
"apklab.apkSignerPath": {
"type": "string",
"default": "",
"markdownDescription": "Put the absolute path of `uber-apk-signer.jar` here if you want to use a non-latest version."
},
"apklab.jadxDirPath": {
"type": "string",
"default": "",
"markdownDescription": "Put the absolute path of `jadx-x.y.z` dir here if you want to use a non-latest version."
},
"apklab.updateTools": {
"type": "boolean",
"default": true,
"markdownDescription": "Whether APKLab should check for tools (for apklab, jadx...) update and show a notification."
},
"apklab.keystorePath": {
"type": "string",
"default": "",
"markdownDescription": "Put the absolute path of your **Java keystore**(`.jks` or `.keystore`) file here."
},
"apklab.keystorePassword": {
"type": "string",
"default": "",
"markdownDescription": "Put the **password** of your keystore here."
},
"apklab.keyAlias": {
"type": "string",
"default": "",
"markdownDescription": "Put the **alias** of the used key in the keystore here."
},
"apklab.keyPassword": {
"type": "string",
"default": "",
"markdownDescription": "Put the **password** of the used key in the keystore here."
},
"apklab.initProjectDirAsGit": {
"type": "boolean",
"default": "false",
"markdownDescription": "Initialize project output directory as **Git** repository."
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn clean && webpack --mode production --devtool hidden-source-map",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts && prettier --check .",
"fix": "prettier --write . && eslint src --ext ts --fix",
"clean": "git clean -Xdf -e !node_modules -e !node_modules/**/* -e !.vscode-test -e !.vscode-test/**/*",
"pretest": "yarn compile",
"test": "node ./out/test/runTest.js",
"package": "vsce package --yarn",
"watch": "webpack --watch"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/listr": "^0.14.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.3",
"@types/vscode": "^1.45.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vscode/test-electron": "^2.3.0",
"@vscode/vsce": "^2.15.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"apk-mitm": "^1.2.1",
"extract-zip": "^2.0.1"
}
}