-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.62 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
{
"name": "agentic-ads",
"version": "0.2.0",
"mcpName": "io.github.nicofains1/agentic-ads",
"description": "MCP server for advertising in AI agent conversations",
"type": "module",
"main": "dist/server.js",
"bin": {
"agentic-ads": "dist/stdio.js",
"agentic-ads-server": "dist/server.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"start:stdio": "node dist/server.js --stdio",
"start:http": "node dist/server.js --http",
"seed": "tsx scripts/seed.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/ tests/",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"advertising",
"ai-agents",
"openclaw"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nicofains1/agentic-ads.git"
},
"bugs": {
"url": "https://github.com/nicofains1/agentic-ads/issues"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@noble/secp256k1": "^3.0.0",
"better-sqlite3": "^11.8.0",
"posthog-node": "^5.28.0",
"viem": "^2.46.3",
"zod": "^3.24.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.12.0",
"eslint": "^9.19.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.23.0",
"vitest": "^3.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}