-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.94 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
{
"name": "cider-arctia",
"version": "2.1.0",
"publisher": "cidercollective",
"engines": {
"vscode": "^1.82.0"
},
"license": "AGPL-3.0-only",
"displayName": "Cider Arctia",
"description": "Cider's official VS Code implementation for playback management and information.",
"categories": [
"Other"
],
"keywords": [
"cider",
"music",
"remote",
"controller",
"arctia"
],
"icon": "images/logo.png",
"preview": true,
"main": "./extension.js",
"repository": {
"type": "git",
"url": "https://github.com/ciderapp/Arctia"
},
"contributes": {
"commands": [
{
"command": "cider-arctia.playpause",
"title": "Cider: Play/Pause"
},
{
"command": "cider-arctia.nextSong",
"title": "Cider: Next Song"
},
{
"command": "cider-arctia.previousSong",
"title": "Cider: Previous Song"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "arctia-sidebar-view",
"title": "Cider - Arctia",
"icon": "images/cider-icon.svg"
}
]
},
"views": {
"arctia-sidebar-view": [
{
"type": "webview",
"id": "arctia-sidebar",
"name": "Cider - Arctia",
"icon": "images/cider-icon.svg",
"contextualTitle": "Cider - Arctia"
}
]
}
},
"devDependencies": {
"@vscode/test-electron": "^2.1.3",
"glob": "^7.2.0",
"mocha": "^9.2.2"
},
"extensionKind": [
"ui"
],
"dependencies": {
"node-fetch": "^2.6.11",
"socket.io-client": "^4.7.5"
}
}