-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 813 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 813 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
{
"name": "frida-il2cpp-bridge",
"version": "0.1.0",
"description": "[Frida](https://frida.re/) module to dump, manipulate and hijack any IL2CPP application at runtime with a high level of abstraction.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist/"
],
"scripts": {
"docs": "typedoc --mode file --entryPoint '__global.Il2Cpp' --readme none --theme minimal && touch ./docs/.nojekyll && chromium ./docs/index.html",
"build": "tsc"
},
"author": "vfsfitvnm",
"license": "ISC",
"prettier": {
"tabWidth": 4,
"arrowParens": "avoid",
"trailingComma": "none",
"printWidth": 140
},
"devDependencies": {
"@types/frida-gum": "^16.2.0",
"@types/node": "^14.14.2"
},
"dependencies": {
"fastest-levenshtein": "^1.0.12"
}
}