forked from imprvhub/mcp-claude-spotify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1002 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 1002 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
29
30
31
{
"name": "mcp-claude-spotify",
"version": "0.1.1",
"description": "Model Context Protocol server for Spotify using Claude Desktop",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node build/index.js",
"dev": "tsc --watch && node build/index.js",
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --testEnvironment=node",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --testEnvironment=node --coverage"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.1",
"axios": "^1.8.4",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"open": "^9.1.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"typescript": "^5.2.2"
}
}