package.json 513 B

1234567891011121314151617181920
  1. {
  2. "name": "frida-agent-example",
  3. "version": "1.0.0",
  4. "description": "Example Frida agent written in TypeScript",
  5. "private": true,
  6. "main": "agent/index.ts",
  7. "scripts": {
  8. "prepare": "npm run build",
  9. "build": "frida-compile agent/index.ts -o _agent.js -c",
  10. "watch": "frida-compile agent/index.ts -o _agent.js -w"
  11. },
  12. "devDependencies": {
  13. "@types/frida-gum": "^18.5.1",
  14. "@types/node": "^18.19.3",
  15. "frida-compile": "^16.4.1"
  16. },
  17. "dependencies": {
  18. "frida": "^16.2.1"
  19. }
  20. }