-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.56 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.56 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
{
"name": "meta-ads-mcp",
"version": "1.7.0",
"description": "Model Context Protocol server for Meta Marketing API integration",
"main": "build/index.js",
"type": "module",
"bin": {
"meta-ads-mcp": "build/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"dev:vercel": "vercel dev",
"test": "jest",
"test:tools": "tsx test-tools.js",
"list:tools": "tsx list-tools.js",
"test:api": "tsx test-api.js",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build",
"vercel-build": "npm run build",
"setup": "node scripts/setup-mcp.js",
"setup:mcp": "node scripts/setup-mcp.js",
"health-check": "node scripts/health-check.js",
"check": "node scripts/health-check.js"
},
"author": "Meta Ads MCP",
"license": "MIT",
"keywords": [
"mcp",
"model-context-protocol",
"meta",
"facebook",
"instagram",
"advertising",
"marketing-api"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"@vercel/kv": "^3.0.0",
"@vercel/mcp-adapter": "^0.11.2",
"dotenv": "^17.2.3",
"jose": "^6.1.3",
"node-fetch": "^3.3.2",
"redis": "^5.10.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@faker-js/faker": "^9.9.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.28",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"eslint": "^9.39.2",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
}
}