This commit is contained in:
Sky
2026-02-04 11:35:08 +00:00
commit 84305e82e5
11 changed files with 735 additions and 0 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "frida-agent-example",
"version": "1.0.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 _agent.js -c",
"watch": "frida-compile agent/index.ts -o _agent.js -w"
},
"devDependencies": {
"@types/frida-gum": "^19.0.0",
"@types/node": "^18.19.111",
"frida-compile": "^19.0.4",
"frida-java-bridge": "^7.0.1"
}
}