-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.12 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
{
"name": "spotify-mcp-server",
"version": "1.0.0",
"description": "Comprehensive Spotify MCP server with granular tools for dynamic HUDs and full playback control",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"auth": "tsx src/auth/setup.ts",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"mcp",
"spotify",
"music",
"player",
"hud",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.1",
"axios": "^1.7.0",
"dotenv": "^16.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/express": "^4.17.0",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^4.0.13",
"eslint": "^9.0.0",
"express": "^4.19.0",
"globals": "^15.0.0",
"open": "^10.1.0",
"tsx": "^4.7.0",
"typescript": "^5.4.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.0.13"
}
}