-
Notifications
You must be signed in to change notification settings - Fork 206
/
package.json
46 lines (46 loc) · 1.01 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "frida-il2cpp-bridge",
"version": "0.9.1",
"description": "A Frida module to dump, trace or hijack any Il2Cpp application at runtime, without needing the global-metadata.dat file.",
"keywords": [
"frida",
"il2cpp",
"dump",
"trace",
"global-metadata"
],
"repository": {
"type": "git",
"url": "https://github.com/vfsfitvnm/frida-il2cpp-bridge.git"
},
"license": "MIT",
"author": "vfsfitvnm",
"exports": "./dist/index.js",
"module": "dist/index.js",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "make dist"
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"printWidth": 160,
"tabWidth": 4,
"trailingComma": "none"
},
"devDependencies": {
"@types/frida-gum": "^18.7.0",
"ts-patch": "^3.2.1",
"ts-transformer-inline-file": "^0.2.0"
},
"overrides": {
"ts-transformer-inline-file": {
"typescript": "^5.0.0"
}
}
}