-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.86 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
{
"name": "igf",
"version": "1.1.2",
"description": "",
"main": "dist/index.mjs",
"bin": {
"igf": "dist/bin.mjs"
},
"files": [
"./dist",
"./gui/dist/",
"./agent/dist",
"./agent/types",
"./drizzle",
"./skills"
],
"scripts": {
"setup": "node scripts/prepare.ts",
"dev": "node --disable-warning=ExperimentalWarning --watch src/index.ts",
"dev:both": "node scripts/dev.ts both",
"dev:all": "node scripts/dev.ts all",
"start": "node --disable-warning=ExperimentalWarning src/index.ts",
"test": "node --disable-warning=ExperimentalWarning --test --test-force-exit src/tests/*.test.ts",
"test:coverage": "c8 --reporter=lcov --reporter=text npm test",
"test:coverage:text": "c8 --reporter=text npm test",
"prepack": "npm run build:npm",
"build:npm": "tsdown",
"build:cli": "node scripts/build-sea.ts"
},
"keywords": [
"mobile",
"frida",
"ios",
"android",
"reverse engineering",
"instrumentation"
],
"author": "",
"license": "MIT",
"type": "module",
"packageManager": "npm@11.6.1",
"engines": {
"node": ">=22.18.0"
},
"dependencies": {
"@hono/node-server": "^1.19.11",
"drizzle-orm": "^0.45.1",
"frida": "17.9.10",
"frida-remote-stream": "^6.0.3",
"frida16": "npm:frida@^16.7.19",
"hono": "^4.12.8",
"r2hermes-wasm": "file:./externals/radare/r2hermes.wasm",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3"
},
"devDependencies": {
"@types/node": "^24.12.0",
"@typescript/native-preview": "^7.0.0-dev.20260314.1",
"c8": "^10.1.3",
"drizzle-kit": "^0.31.9",
"tsdown": "^0.20.3"
},
"repository": {
"type": "git",
"url": "https://github.com/ChiChou/grapefruit"
},
"bugs": {
"url": "https://github.com/ChiChou/grapefruit/issues"
},
"homepage": "https://github.com/ChiChou/grapefruit#readme"
}