-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
27 lines (27 loc) · 838 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
{
"name": "fridasampleagentts",
"version": "1.0.0",
"description": "An example with step by step instructions on how to write a FRIDA agent in TypeScript",
"main": "src/index.ts",
"scripts": {
"prepare": "npm run build",
"build": "frida-compile src/index.ts -o index.js -c",
"watch": "frida-compile src/index.ts -o index.js -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BRUHItsABunny/FRIDASampleAgentTS.git"
},
"author": "BRUHItsABunny",
"license": "ISC",
"bugs": {
"url": "https://github.com/BRUHItsABunny/FRIDASampleAgentTS/issues"
},
"homepage": "https://github.com/BRUHItsABunny/FRIDASampleAgentTS#readme",
"devDependencies": {
"@types/frida-gum": "^18.3.1",
"@types/node": "^18.15.0",
"frida-compile": "^16.1.8",
"typescript": "^4.9.5"
}
}