-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.1 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
{
"name": "frida-mcp",
"version": "1.1.0",
"description": "TypeScript MCP server for Frida 17 dynamic instrumentation",
"type": "module",
"engines": {
"node": ">=20"
},
"main": "dist/index.js",
"bin": {
"frida-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && cp src/docs/frida-api.json dist/docs/frida-api.json",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"dev": "tsc --watch",
"fetch-docs": "tsx scripts/fetch-docs.ts",
"test": "node --import tsx/esm --test 'test/unit/**/*.test.ts' 'test/integration/**/*.test.ts'",
"test:unit": "node --import tsx/esm --test 'test/unit/**/*.test.ts'",
"test:integration": "node --import tsx/esm --test 'test/integration/**/*.test.ts'",
"test:device": "node --import tsx/esm --test 'test/device/**/*.test.ts'"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"frida": "^17.9.11",
"frida-java-bridge": "^7.0.13",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0"
}
}