package.json•1.14 kB
{
"name": "frida-mcp-server",
"version": "1.0.0",
"description": "Frida MCP Server - TypeScript implementation providing dynamic instrumentation capabilities",
"type": "module",
"main": "./src/index.ts",
"module": "./src/index.ts",
"scripts": {
"start": "bun run src/index.ts",
"start:http": "bun run src/index.ts --transport streamable-http --host 0.0.0.0 --port 8000",
"start:sse": "bun run src/index.ts --transport sse --host 127.0.0.1 --port 8000",
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist node_modules"
},
"keywords": [
"frida",
"mcp",
"dynamic-instrumentation",
"reverse-engineering",
"debugging",
"bun"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"frida": "^17.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/bun": "latest",
"bun-types": "latest",
"typescript": "^5.3.0"
},
"engines": {
"bun": ">=1.0.0"
},
"trustedDependencies": [
"frida"
]
}