-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 763 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 763 Bytes
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
{
"name": "frida-unity-esp-manager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"spawn": "frida -U -f com.aldagames.zombieshooter -l dist/agent.js --auto-reload --kill-on-exit",
"watch": "frida-compile src/index.ts -o dist/agent.js -w",
"build": "frida-compile src/index.ts -o dist/agent.js -c"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/frida-gum": "^18.4.1",
"frida-compile": "^16.3.0",
"typescript": "^5.1.6"
}
}