package.json•835 B
{
"name": "vulpes-spotify-mcp",
"version": "1.0.0",
"description": "MCP server for Spotify integration",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"prepublishOnly": "npm run build",
"get-token": "tsc && node dist/get-refresh-token.js"
},
"bin": {
"spotify-mcp": "./dist/index.js"
},
"keywords": [
"mcp",
"spotify",
"ai"
],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"dotenv": "^16.4.7",
"express": "^5.0.1",
"spotify-web-api-node": "^5.0.2"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/node": "^22.13.11",
"@types/spotify-web-api-node": "^5.0.11",
"typescript": "^5.8.2"
}
}