-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 987 Bytes
/
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
{
"name": "SpotifyMCP",
"version": "0.2.0",
"description": "Context Protocol Server for Spotify",
"private": true,
"type": "module",
"bin": {
"SpotifyMCP": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"if (require('fs').existsSync('build/index.js')) require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"token": "cross-env NODE_ENV=development tsx src/scripts/get-spotify-token.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"spotify-web-api-node": "^5.0.2"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^20.17.8",
"@types/spotify-web-api-node": "^5.0.11",
"cross-env": "^7.0.3",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}