-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "frida-ios-dump-requests",
"version": "0.1.0",
"description": "Dump any iOS application HTTP requests with Frida and Node.js.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lib:build": "frida-compile ./src/agent/index.ts -o ./src/_agent.js -c",
"lib:watch": "frida-compile ./src/agent/index.ts -o ./src/_agent.js -w"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alza54/frida-ios-dump-requests.git"
},
"keywords": [
"frida",
"ios",
"dump",
"intercept",
"ssl",
"pinning",
"http",
"requests",
"objc"
],
"author": "alza54 (https://github.com/alza54)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alza54/frida-ios-dump-requests/issues"
},
"homepage": "https://github.com/alza54/frida-ios-dump-requests#readme",
"dependencies": {
"JSONStream": "^1.3.5",
"frida": "^15.1.1",
"frida-compile": "^10.2.4",
"typescript": "^4.4.3",
"yargs": "^17.1.1"
},
"devDependencies": {
"@types/frida-gum": "^17.1.0",
"@types/jsonstream": "^0.8.30",
"@types/node": "^16.9.1",
"@types/yargs": "^17.0.2"
}
}