-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.5 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
{
"name": "add-to-spotify",
"displayName": "Spotify Add Song",
"description": "Search and add a song to a Spotify playlist",
"version": "0.9.1",
"publisher": "Amathron",
"author": {
"name": "Max Grass",
"url": "https://amathron.com"
},
"icon": "./assets/amathron.addToSpotify.webp",
"funding": "https://github.com/sponsors/maxwowpow",
"galleryBanner": {
"color": "#306998",
"theme": "dark"
},
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Other"
],
"keywords": [
"spotify",
"song"
],
"extensionKind": [
"ui",
"workspace"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"homepage": "https://github.com/amathron-com/a-vscodium-add-to-spotify/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/amathron-com/a-vscodium-add-to-spotify.git"
},
"bugs": {
"url": "https://github.com/amathron-com/a-vscodium-add-to-spotify/issues"
},
"main": "./dist/extension.js",
"activationEvents": [
"onCommand:amathron.addToSpotify"
],
"contributes": {
"commands": [
{
"command": "amathron.addToSpotify",
"title": "Amathron Song: Add a song to Spotify"
},
{
"command": "amathron.setSpotifyPlaylist",
"title": "Amathron Song: Set a playlist to save songs into"
}
],
"configuration": {
"type": "object",
"title": "Amathron: Add to Spotify Settings",
"properties": {
"amathron.addToSpotify": {
"type": "object",
"description": "Settings for Adding a song to Spotify playlist",
"properties": {
"clientId": {
"type": "string",
"default": "",
"description": "Spotify Client ID"
},
"clientSecret": {
"type": "string",
"default": "",
"description": "Spotify Client Secret"
},
"redirectUri": {
"type": "string",
"default": "http://localhost:8080/callback",
"description": "Spotify Redirect URI"
},
"playlistId": {
"type": "string",
"default": "",
"description": "Spotify Playlist ID"
}
}
}
}
}
},
"scripts": {},
"license": "MIT",
"dependencies": {
"spotify-web-api-node": "^5.0.2"
},
"devDependencies": {
"@types/vscode": "^1.95.0",
"esbuild": "^0.24.0"
}
}