-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 4.62 KB
/
package.json
File metadata and controls
139 lines (139 loc) · 4.62 KB
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
{
"name": "spotilyrics",
"displayName": "spotilyrics",
"description": "🎧 See synchronized Spotify lyrics inside VS Code while coding",
"publisher": "therepanic",
"version": "1.1.1",
"engines": {
"vscode": "^1.66.0"
},
"icon": "icon.png",
"categories": [
"Other"
],
"activationEvents": [
"onCommand:spotilyrics.lyrics",
"onCommand:spotilyrics.logout",
"onCommand:spotilyrics.tracksCacheMaxSize",
"onCommand:spotilyrics.port",
"onCommand:spotilyrics.mobileMode",
"onCommand:spotilyrics.songTitle",
"onCommand:spotilyrics.songIcon",
"onCommand:spotilyrics.songArtists"
],
"main": "./out/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/therepanic/spotilyrics.git"
},
"contributes": {
"configuration": {
"title": "spotilyrics",
"properties": {
"spotilyrics.port": {
"type": "number",
"default": 8000,
"minimum": 1024,
"maximum": 65535,
"description": "Port used for the Spotify OAuth callback."
},
"spotilyrics.tracksCacheMaxSize": {
"type": "number",
"default": 10,
"minimum": 1,
"maximum": 9007199254740991,
"description": "Maximum cache size for tracks."
},
"spotilyrics.mobileMode": {
"type": "boolean",
"default": false,
"description": "Mobile mode: black unplayed lines, white played lines."
},
"spotilyrics.songTitle": {
"type": "boolean",
"default": true,
"description": "Toggle the song title in the lyrics panel."
},
"spotilyrics.songIcon": {
"type": "boolean",
"default": true,
"description": "Toggle the song icon in the lyrics panel."
},
"spotilyrics.songArtists": {
"type": "boolean",
"default": true,
"description": "Toggle the song artists in the lyrics panel."
}
}
},
"commands": [
{
"command": "spotilyrics.lyrics",
"title": "Show Spotify Lyrics via Spotilyrics"
},
{
"command": "spotilyrics.logout",
"title": "Logout from Spotilyrics"
},
{
"command": "spotilyrics.tracksCacheMaxSize",
"title": "Set Tracks Cache Max Size"
},
{
"command": "spotilyrics.mobileMode",
"title": "Toggle Mobile Mode"
},
{
"command": "spotilyrics.port",
"title": "Set Spotify OAuth Callback Port"
},
{
"command": "spotilyrics.songTitle",
"title": "Toggle Song Title"
},
{
"command": "spotilyrics.songIcon",
"title": "Toggle Song Icon"
},
{
"command": "spotilyrics.songArtists",
"title": "Toggle Song Artists"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check 'src/**/*.{ts,js}'",
"test": "vscode-test"
},
"devDependencies": {
"@types/colorthief": "^2.6.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/node-fetch": "^2.6.13",
"@types/vscode": "^1.66.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"typescript": "^5.8.3"
},
"dependencies": {
"colorthief": "^2.6.0",
"lru-cache": "^7.18.3",
"node-fetch": "^2.7.0",
"ts-treemap": "^1.1.0",
"tslib": "^2.8.1"
},
"license": "Unlicense"
}