spotify-ws-ts/package.json
2024-05-28 10:13:33 +02:00

32 lines
808 B
JSON

{
"name": "spotify-ws",
"version": "1.0",
"description": "Get now-playing-song from Spotify with Websockets",
"author": "albert|skidoodle@gh",
"license": "AGPL-3.0",
"repository": {
"type": "GitHub",
"url": "https://github.com/skidoodle/spotify-ws"
},
"main": "src/index.ts",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"lint": "eslint --ext .ts src",
"serve": "ts-node src/index.ts"
},
"dependencies": {
"axios": "^1.6.8",
"dotenv": "^16.4.5",
"socket.io": "^4.7.5",
"zod": "^3.23.4"
},
"devDependencies": {
"@types/eslint": "^8.56.10",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"eslint": "^9.1.1",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}