forked from oleavr/frida-agent-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.63 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
{
"name": "frida-agent-example",
"version": "1.1.0",
"description": "Example Frida agent written in TypeScript",
"private": true,
"main": "agent/index.ts",
"scripts": {
"prepare": "npm run build",
"build": "frida-compile agent/index.ts -o dist/_agent.js -c",
"watch": "frida-compile agent/index.ts -o agent/_agent.js -w",
"start": "frida -l agent/_agent.js WeChat.exe",
"watch:xp": "frida-compile agent/xp-3.9.2.23.ts -o agent/xp-3.9.2.23.js -w",
"start:xp": "frida -l agent/xp-3.9.2.23.js WeChat.exe",
"watch:xp:3.9.10.19": "frida-compile agent/xp-3.9.10.19.ts -o agent/xp-3.9.10.19.js -w",
"start:xp:3.9.10.19": "frida -l agent/xp-3.9.10.19.js WeChat.exe",
"watch:http": "frida-compile agent/http.ts -o agent/http.js -w",
"start:http": "frida -l agent/http.js WeChat.exe",
"watch:lite": "frida-compile agent/xp-3.9.10.27.ts -o agent/xp-3.9.10.27.js -w",
"start:lite": "frida -l agent/xp-3.9.10.27.js WeChat.exe",
"build:lite": "frida-compile agent/xp-3.9.10.27.ts -o dist/xp-3.9.10.27.js -c",
"watch:dev": "frida-compile agent/dev.ts -o agent/dev.js -w",
"start:dev": "frida -l agent/dev.js WeChat.exe",
"start:inject": "frida -l examples/inject.js WeChat.exe"
},
"devDependencies": {
"@types/frida-gum": "^18.5.1",
"@types/koa": "^2.15.0",
"@types/koa-router": "^7.4.8",
"@types/node": "^18.19.34",
"frida-compile": "^16.4.1",
"typescript": "^5.4.5"
},
"dependencies": {
"@frida/net": "^4.0.2",
"frida": "^16.3.3",
"http-parser-js": "^0.5.8",
"koa": "^2.7.0",
"koa-router": "^7.4.0",
"sidecar": "^1.0.19",
"ws": "^8.17.0"
}
}