-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.6 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.6 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
{
"name": "sverigesradio-mcp",
"version": "1.3.0",
"description": "MCP server for Sveriges Radio's Open API - access Swedish radio programs, podcasts, live streams, schedules, news and traffic",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"sr-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc && chmod +x dist/index.js dist/http-server.js",
"dev": "tsx src/index.ts",
"dev:http": "tsx src/http-server.ts",
"start": "node dist/http-server.js",
"start:stdio": "node dist/index.js",
"test": "vitest",
"test:coverage": "vitest --coverage",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"sveriges-radio",
"sr",
"swedish-radio",
"radio",
"podcast",
"podcasts",
"sweden",
"svenska",
"news",
"traffic",
"live-stream"
],
"author": "Isak Skogstad",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/isakskogstad/Sveriges.Radio-MCP.git"
},
"homepage": "https://github.com/isakskogstad/Sveriges.Radio-MCP#readme",
"bugs": {
"url": "https://github.com/isakskogstad/Sveriges.Radio-MCP/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.22.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"marked": "^17.0.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^4.0.14"
},
"engines": {
"node": ">=18.0.0"
}
}