-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.01 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.01 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
{
"name": "your-spotify-mcp",
"version": "0.2.3",
"description": "MCP server for Your Spotify analytics and Spotify Web API control",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc && node build/index.js",
"watch": "tsc --watch",
"clean": "rm -rf build",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test": "node test/test-tools.js"
},
"keywords": [
"mcp",
"spotify",
"your-spotify",
"analytics",
"model-context-protocol",
"toon"
],
"author": "Jonathan Down",
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@toon-format/toon": "^1.0.0",
"axios": "^1.6.0",
"bottleneck": "^2.19.5",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"eslint": "^9.0.0",
"@eslint/js": "^9.0.0",
"typescript-eslint": "^8.0.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}