-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
138 lines (138 loc) · 3.55 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
{
"name": "vscode-ytmusic",
"displayName": "vscode-ytmusic",
"description": "Connecting VS Code with the YTMDesktop Player",
"version": "1.4.1",
"publisher": "sedders123",
"author": {
"name": "James Seden Smith"
},
"license": "MIT",
"homepage": "https://github.com/sedders123/vscode-ytmusic",
"bugs": {
"url": "https://github.com/sedders123/vscode-ytmusic/issues",
"email": "sedders123@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/sedders123/vscode-ytmusic.git"
},
"icon": "icon.png",
"engines": {
"vscode": "^1.64.0"
},
"extensionKind": [
"ui"
],
"keywords": [
"Youtube Music",
"Youtube Music Desktop Player",
"YTMDesktop"
],
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"files": [
"/dist"
],
"main": "./dist/main",
"contributes": {
"commands": [
{
"command": "ytMusic.auth",
"title": "Set the auth code",
"category": "Youtube Music"
},
{
"command": "ytMusic.playPause",
"title": "Toggle Play Pause",
"category": "Youtube Music"
},
{
"command": "ytMusic.skip",
"title": "Skip Song",
"category": "Youtube Music"
},
{
"command": "ytMusic.rewind",
"title": "Rewind Song",
"category": "Youtube Music"
},
{
"command": "ytMusic.restart",
"title": "Restart",
"category": "Youtube Music"
},
{
"command": "ytMusic.cycleRepeat",
"title": "Cycle Repeat Mode",
"category": "Youtube Music"
},
{
"command": "ytMusic.thumbsUp",
"title": "Thumbs Up Current Song",
"category": "Youtube Music"
},
{
"command": "ytMusic.thumbsDown",
"title": "Thumbs Down Current Song",
"category": "Youtube Music"
}
],
"icons":{
"mui-thumbs-up": {
"description": "Thumbs up outlined",
"default": {
"fontPath": "./fonts/material-ui-font-subset.woff2",
"fontCharacter": "\\e9f3"
}
},
"mui-thumbs-up-solid": {
"description": "Thumbs up solid",
"default": {
"fontPath": "./fonts/material-ui-font-subset.woff2",
"fontCharacter": "\\e8dc"
}
},
"mui-thumbs-down": {
"description": "Thumbs down outlined",
"default": {
"fontPath": "./fonts/material-ui-font-subset.woff2",
"fontCharacter": "\\e9f2"
}
},
"mui-thumbs-down-solid": {
"description": "Thumbs down solid",
"default": {
"fontPath": "./fonts/material-ui-font-subset.woff2",
"fontCharacter": "\\e8db"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=dist/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --allowed-hosts npm --validate-https",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/node": "20.9.0",
"@types/node-fetch": "2.6.9",
"@types/vscode": "1.64.0",
"esbuild": "0.19.9",
"lockfile-lint": "4.12.1",
"prettier": "3.1.1",
"typescript": "5.3.3"
},
"dependencies": {
"node-fetch": "3.3.2",
"socket.io-client": "2.5.0",
"vscode-cache": "0.3.0"
}
}