-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.29 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
{
"name": "falconguard-scan-agent",
"version": "1.0.0",
"description": "FalconGuard Scan-Agent — x402-metered smart contract security scanner on Celo",
"main": "dist/server.js",
"workspaces": [
"src/frontend"
],
"scripts": {
"build": "tsc",
"start": "tsx src/server.ts",
"dev": "tsx watch src/server.ts",
"mcp": "tsx src/mcp/mcpServer.ts",
"client-agent": "tsx src/client-agent/autoScanner.ts",
"scan-once": "tsx src/client-agent/autoScanner.ts",
"frontend:dev": "cd src/frontend && npm run dev",
"frontend:build": "cd src/frontend && npm run build"
},
"keywords": [
"celo",
"x402",
"security",
"slither",
"mcp",
"ai-agent",
"defai"
],
"author": "IC Melvin (FalconGuard Pro)",
"license": "MIT",
"dependencies": {
"@celo/attribution-tags": "^0.3.0",
"@modelcontextprotocol/sdk": "^1.6.0",
"@x402/core": "^2.0.0",
"@x402/evm": "^2.0.0",
"@x402/express": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"thirdweb": "^5.93.0",
"viem": "^2.22.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.13.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}