-
-
Notifications
You must be signed in to change notification settings - Fork 194
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "bagbak",
"version": "4.0.2",
"description": "Dump iOS app from a jailbroken device, based on frida.re",
"main": "index.js",
"scripts": {
"test": "echo 'Not supported'",
"types": "npx -p typescript tsc index.js --declaration --allowJs --emitDeclarationOnly --outDir types --lib esnext"
},
"author": "CodeColorist",
"license": "MIT",
"bin": {
"bagbak": "./bin/bagbak.js"
},
"types": "types/index.d.ts",
"files": [
"index.js",
"/agent/inject.js",
"/agent/runningboardd.js",
"/bin",
"/lib/"
],
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"devDependencies": {
"@types/frida-gum": "^18.7.0",
"@types/node": "^18.15.11"
},
"dependencies": {
"chalk": "^4.0.0",
"commander": "^5.1.0",
"frida": "^16.5.1",
"ssh2": "^1.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChiChou/bagbak.git"
},
"keywords": [
"ios",
"reverse-engineering",
"frida",
"jailbreak"
],
"bugs": {
"url": "https://github.com/ChiChou/bagbak/issues"
},
"homepage": "https://github.com/ChiChou/bagbak#readme"
}