-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.37 KB
/
package.json
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
{
"name": "media-mcp",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm build:shared && pnpm build:services && pnpm build:server",
"build:shared": "pnpm --filter @media-mcp/shared build",
"build:services": "pnpm --filter @media-mcp/prowlarr --filter @media-mcp/sonarr --filter @media-mcp/gotify --filter @media-mcp/overseerr --filter @media-mcp/radarr --filter @media-mcp/tautulli --filter @media-mcp/sabnzbd --filter @media-mcp/qbittorrent --filter @media-mcp/plex --filter @media-mcp/tmdb build",
"build:server": "pnpm --filter @media-mcp/server build",
"prestart": "node build/project-setup.js",
"start": "pnpm --filter @media-mcp/server start",
"dev": "pnpm -r dev",
"test": "pnpm -r test",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint -- --fix",
"type-check": "pnpm -r type-check",
"check": "pnpm type-check && pnpm lint",
"check:fix": "pnpm type-check && pnpm lint:fix"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@modelcontextprotocol/sdk": "^1.4.1",
"@types/node": "^22.12.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"dotenv": "^16.4.1",
"eslint": "^9.19.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"zod": "^3.24.1"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}