forked from frida/frida-compile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.51 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "frida-compile",
"version": "16.2.1",
"description": "Compile a Frida script comprised of one or more Node.js modules",
"keywords": [
"frida"
],
"homepage": "https://frida.re",
"main": "dist/compiler.js",
"types": "dist/compiler.d.ts",
"type": "module",
"bin": "dist/cli.js",
"files": [
"/dist/**/*.d.ts",
"/dist/**/*.js",
"/ext/*.d.ts",
"/ext/*.js"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w"
},
"dependencies": {
"@frida/assert": "^3.0.1",
"@frida/base64-js": "^2.0.3",
"@frida/buffer": "^7.0.4",
"@frida/crosspath": "^3.0.0",
"@frida/diagnostics_channel": "^1.0.0",
"@frida/events": "^4.0.4",
"@frida/http": "^4.0.2",
"@frida/http-parser-js": "^1.0.0",
"@frida/https": "^1.0.0",
"@frida/ieee754": "^2.0.2",
"@frida/net": "^4.0.1",
"@frida/os": "^1.0.0",
"@frida/path": "^2.0.3",
"@frida/process": "^1.2.1",
"@frida/punycode": "^3.0.0",
"@frida/querystring": "^1.0.0",
"@frida/readable-stream": "^4.1.3",
"@frida/reserved-words": "^1.0.0",
"@frida/stream": "^1.0.2",
"@frida/string_decoder": "^2.0.0",
"@frida/terser": "^1.0.0",
"@frida/timers": "^3.0.0",
"@frida/tty": "^1.0.0",
"@frida/url": "^1.0.2",
"@frida/util": "^1.0.3",
"@frida/vm": "^2.0.0",
"commander": "^9.4.0",
"frida-fs": "^5.2.3",
"typed-emitter": "^2.1.0"
},
"devDependencies": {
"@types/frida-gum": "^18.3.1",
"@types/node": "^18.7.23",
"typescript": "^4.8.3"
}
}