-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 917 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
{
"name": "spotify-playlist-observer",
"version": "1.0.0",
"description": "spotifyのプレイリストを監視して、差分を検知したらdiscordに発言するbot",
"main": "index.js",
"scripts": {
"start": "ts-node main.ts",
"start:init": "MODE=INIT ts-node main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyken/spotify-playlist-observer.git"
},
"author": "kyken",
"license": "MIT",
"bugs": {
"url": "https://github.com/kyken/spotify-playlist-observer/issues"
},
"homepage": "https://github.com/kyken/spotify-playlist-observer#readme",
"dependencies": {
"discord.js": "^12.5.3",
"spotify-web-api-node": "^5.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/shelljs": "^0.8.8",
"@types/spotify-web-api-node": "^5.0.2",
"@types/uuid": "^8.3.0"
}
}