-
-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.3 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.3 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
{
"name": "bagbak",
"version": "5.1.2",
"description": "Dump iOS app from a jailbroken device, based on frida.re",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsdown",
"prepublishOnly": "npm run build",
"test": "echo 'Not supported'"
},
"author": "CodeColorist",
"license": "MIT",
"bin": {
"bagbak": "dist/bin/bagbak.mjs"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"/dist",
"/agent/dist/app.js",
"/agent/dist/springboard.js"
],
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"devDependencies": {
"@types/frida-gum": "^19.0.2",
"@types/node": "^25.5.0",
"tsdown": "^0.21.4",
"typescript": "^5.9.3"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3",
"frida": "^17.8.2",
"frida-remote-stream": "^6.0.3"
},
"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"
}