-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (64 loc) · 1.51 KB
/
package.json
File metadata and controls
65 lines (64 loc) · 1.51 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
{
"name": "ipsw-plist-decoder",
"displayName": "IPSW Plist Decoder",
"description": "Decode plist files using ipsw tool for mobile penetration testing",
"version": "0.0.2",
"publisher": "dado1513",
"repository": {
"type": "git",
"url": "https://github.com/dado1513/ipsw-plist-decoder"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"icon": "images/plist_decode_icon.png",
"contributes": {
"commands": [
{
"command": "ipsw-plist-decoder.decodePlist",
"title": "Decode Plist with IPSW",
"category": "IPSW"
}
],
"menus": {
"explorer/context": [
{
"command": "ipsw-plist-decoder.decodePlist",
"when": "resourceExtname == .plist",
"group": "navigation"
}
],
"editor/context": [
{
"command": "ipsw-plist-decoder.decodePlist",
"when": "resourceExtname == .plist",
"group": "navigation"
}
]
},
"configuration": {
"title": "IPSW Plist Decoder",
"properties": {
"ipsw-plist-decoder.ipswPath": {
"type": "string",
"default": "ipsw",
"description": "Path to the ipsw executable"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "16.x",
"@types/vscode": "^1.74.0",
"typescript": "^4.9.4"
}
}