package.json 655 B

1234567891011121314151617181920212223
  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. "lint": "eslint agent/**/*.ts"
  12. },
  13. "devDependencies": {
  14. "@types/frida-gum": "^17.2.0",
  15. "@types/node": "^16.11.12",
  16. "@typescript-eslint/eslint-plugin": "^2.27.0",
  17. "@typescript-eslint/parser": "^2.27.0",
  18. "frida-compile": "^10.2.5"
  19. },
  20. "dependencies": {
  21. "jnitrace-engine": "^1.1.0"
  22. }
  23. }