-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 971 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": "spotify-websocket-client",
"version": "2.0.0",
"description": "Simple Spotify websocket client for simple projects use",
"main": "index.ts",
"scripts": {
"dev": "bun --watch run index.ts",
"start": "bun run index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/busybox11/spotify-websocket-client.git"
},
"author": "busybox11",
"license": "ISC",
"bugs": {
"url": "https://github.com/busybox11/spotify-websocket-client/issues"
},
"homepage": "https://github.com/busybox11/spotify-websocket-client#readme",
"dependencies": {
"dotenv": "^10.0.0",
"spotify-web-api-node": "^5.0.2",
"ws": "^8.2.1"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"eslint": "^9.8.0",
"@types/bun": "^1.1.6",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.1.0",
"@types/spotify-web-api-node": "^5.0.11",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
}
}