-
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.16 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.16 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "frida",
"version": "0.0.0",
"authors": [
"Frida Developers"
],
"description": "Inject JavaScript to explore native apps on Windows, Mac, Linux, iOS and Android",
"keywords": [
"debugger",
"tracer",
"instrumentation",
"hooking",
"inject",
"windows",
"macos",
"linux",
"ios",
"iphone",
"ipad",
"android"
],
"homepage": "https://frida.re",
"engines": {
"node": ">=16"
},
"main": "build/src/frida.js",
"exports": {
".": "./build/src/frida.js"
},
"type": "module",
"files": [
"BSDmakefile",
"Makefile",
"build/src/*.d.ts",
"build/src/*.js",
"configure",
"configure.bat",
"make.bat",
"meson.build",
"meson.options",
"tsconfig.json",
"releng/*.py",
"releng/*.toml",
"releng/devkit-assets/",
"releng/meson-scripts/",
"releng/meson/meson.py",
"releng/meson/mesonbuild/",
"releng/tomlkit/tomlkit/",
"scripts/",
"src/",
"subprojects/frida-core.wrap",
"subprojects/nan.wrap",
"subprojects/packagefiles/",
"test/"
],
"dependencies": {
"bindings": "^1.5.0",
"minimatch": "^10.0.1",
"prebuild-install": "^7.1.3"
},
"devDependencies": {
"@types/bindings": "^1.5.5",
"@types/chai": "^5.2.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.16",
"chai": "^5.2.0",
"mocha": "^11.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"scripts": {
"install": "node scripts/install.js",
"test": "node --loader ts-node/esm --expose-gc node_modules/mocha/bin/_mocha --extension ts test/*.ts",
"examples:build": "tsc -p tsconfig.examples.json",
"examples:watch": "tsc -p tsconfig.examples.json -w"
},
"binary": {
"host": "https://github.com",
"remote_path": "frida/frida/releases/download/{version}",
"module_path": "build",
"napi_versions": [
8
]
},
"config": {
"runtime": "napi",
"target": "8"
},
"license": "LGPL-2.0 WITH WxWindows-exception-3.1",
"repository": {
"type": "git",
"url": "https://github.com/frida/frida-node.git"
},
"bugs": {
"url": "https://github.com/frida/frida-node/issues"
}
}