-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
234 lines (234 loc) · 5.99 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
{
"name": "music-time",
"displayName": "Music Time for Spotify",
"version": "2.2.47",
"publisher": "softwaredotcom",
"description": "Music Time for Spotify is a VS Code extension that discovers the most productive music to listen to as you code.",
"author": {
"name": "Software.com"
},
"license": "SEE LICENSE IN LICENSE",
"icon": "images/app-icon-music-time.png",
"galleryBanner": {
"color": "#384356",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/swdotcom/swdc-vscode-musictime"
},
"extensionKind": [
"ui",
"workspace"
],
"categories": [
"Other"
],
"keywords": [
"spotify",
"music",
"cody",
"playlists",
"tracks",
"productivity",
"songs",
"player",
"time"
],
"activationEvents": [
"onStartupFinished"
],
"engines": {
"vscode": "^1.52.0"
},
"main": "./dist/extension",
"scripts": {
"lint": "tslint -p ./",
"build": "vsce package --yarn",
"watch": "tsc -watch -p ./",
"webpack": "yarn compile:extension & yarn compile:views",
"webpack-dev": "yarn watch:extension & yarn watch:views",
"compile:extension": "tsc -p ./",
"compile:views": "webpack --mode development",
"watch:extension": "tsc -watch -p ./",
"watch:views": "webpack --watch --mode development",
"vscode:prepublish": "webpack --mode production",
"test-compile": "tsc -p ./"
},
"contributes": {
"commands": [
{
"command": "musictime.next",
"title": "Music Time: Play next song"
},
{
"command": "musictime.previous",
"title": "Music Time: Play previous song"
},
{
"command": "musictime.play",
"title": "Music Time: Play"
},
{
"command": "musictime.shareTrack",
"title": "Share track"
},
{
"command": "musictime.sharePlaylist",
"title": "Share playlist"
},
{
"command": "musictime.pause",
"title": "Music Time: Stop"
},
{
"command": "musictime.follow",
"title": "Follow"
},
{
"command": "musictime.removeTrack",
"title": "Remove track"
},
{
"command": "musictime.volumeIcon",
"title": "Playing"
},
{
"command": "musictime.sortIcon",
"title": "Music Time: Sort"
},
{
"command": "musictime.sortAlphabetically",
"title": "Music Time: Sort A-Z"
},
{
"command": "musictime.sortToOriginal",
"title": "Music Time: Sort latest"
},
{
"command": "musictime.like",
"title": "Music Time: Like song"
},
{
"command": "musictime.unlike",
"title": "Music Time: Unlike Song"
},
{
"command": "musictime.repeatOn",
"title": "Music Time: Repeat track"
},
{
"command": "musictime.repeatOff",
"title": "Music Time: Don't repeat"
},
{
"command": "musictime.menu",
"title": "Music Time: Click to see more"
},
{
"command": "musictime.currentSong",
"title": "Click to view track"
},
{
"command": "musictime.connectSpotify",
"title": "Music Time: Connect your Spotify account",
"tooltip": "Connect your Spotify account to view your playlists"
},
{
"command": "musictime.connectSlack",
"title": "Music Time: Connect your Slack account",
"tooltip": "Connect your Slack account to share your playlists or tracks"
},
{
"command": "musictime.disconnectSpotify",
"title": "Music Time: Disconnect your Spotify account",
"tooltip": "Disconnect your Spotify account"
},
{
"command": "musictime.disconnectSlack",
"title": "Music Time: Disconnect your Slack account",
"tooltip": "Disconnect your Slack account"
},
{
"command": "musictime.addToPlaylist",
"title": "Music Time: Add or create a playlist"
},
{
"command": "musictime.songGenreSelector",
"title": "Music Time: Genre selection"
},
{
"command": "musictime.songMoodSelector",
"title": "Music Time: Mood selection"
},
{
"command": "musictime.searchTracks",
"title": "Music Time: Search for a song"
},
{
"command": "musictime.songTitleRefresh",
"title": "Music Time: Display song info"
},
{
"command": "musictime.getTrackRecommendations",
"title": "Get recommendations"
},
{
"command": "musictime.showAlbum",
"title": "Show album"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "music-time-sidebar",
"title": "Music Time",
"icon": "resources/dark/headphone-symbol.svg"
}
]
},
"views": {
"music-time-sidebar": [
{
"id": "musictime.webView",
"type": "webview",
"name": "",
"icon": "resources/dark/headphone-symbol.svg"
}
]
}
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/copy-webpack-plugin": "^8.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^20.14.1",
"@types/vscode": "^1.52.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"copy-webpack-plugin": "^9.0.1",
"eslint": "9.x",
"file-loader": "^6.2.0",
"globals": "^15.3.0",
"ts-loader": "^9.2.6",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0",
"webpack": "^5.94.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@slack/web-api": "^7.7.0",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.12",
"axios": "^1.7.7",
"clipboardy": "^4.0.0",
"cody-music": "2.10.8",
"date-fns": "^4.1.0",
"open": "^10.1.0",
"query-string": "^7.0.1",
"uuid": "^11.0.1",
"ws": "^8.18.0"
}
}