-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 809 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 809 Bytes
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
{
"name": "reddit-ads-mcp",
"version": "0.1.0",
"private": true,
"description": "MCP server for the Reddit Ads API v3.",
"type": "module",
"main": "dist/src/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/index.ts",
"start": "node dist/src/index.js",
"test": "tsx tests/smoke.ts",
"test:discovery": "tsx tests/discovery.ts",
"test:authorized": "tsx tests/authorized-exercise.ts",
"test:full-writes": "tsx tests/full-write-flows.ts",
"test:remaining": "tsx tests/remaining-coverage.ts",
"refresh:spec": "tsx scripts/refresh-spec.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^24.6.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}