-
Notifications
You must be signed in to change notification settings - Fork 124
/
package.json
34 lines (34 loc) · 966 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
{
"name": "r2frida-agent",
"version": "5.9.6",
"description": "Agent for frida:// io plugin",
"private": true,
"type": "module",
"main": "src/agent/index.js",
"scripts": {
"lint": "eslint src/agent",
"indent": "eslint --fix src/agent",
"prepare": "npm run build",
"build": "frida-compile -Sco src/_agent.js src/agent/index.ts",
"watch": "frida-compile -Sco src/_agent.js -w src/agent/index.ts",
"codecheck-ts": "eslint . --ext .ts --no-error-on-unmatched-pattern"
},
"license": "LGPL-3.0",
"engines": {
"node": ">=14.16"
},
"devDependencies": {
"@frida/events": "^4.0.4",
"@types/frida-gum": "^18.7.1",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.34.0",
"frida-compile": "^16.2.2",
"typescript": "^5.7.2"
},
"exports": {
"require": "./src/agent/index.js",
"import": "./index.mjs"
}
}