-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 923 Bytes
/
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
{
"name": "httpdump",
"version": "1.0.0",
"description": "A generic HTTP/HTTPS protocol packet capture script tool for iOS App based on frida.",
"main": "src/index.ts",
"scripts": {
"prepare": "npm run build",
"build": "frida-compile src/index.ts -o dist/httpdump.js -c",
"watch": "frida-compile src/index.ts -o dist/httpdump.js -w"
},
"devDependencies": {
"@types/frida-gum": "^16.2.0",
"@types/node": "^14.14.10",
"frida-compile": "^10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suifei/httpdump.git"
},
"keywords": [
"frida",
"http",
"https",
"capture",
"tool",
"script",
"iOS",
"objc",
"NSURL"
],
"author": "suifei@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/suifei/httpdump/issues"
},
"homepage": "https://github.com/suifei/httpdump#readme"
}