-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "spotishush",
"version": "2023.9.26",
"license": "MIT",
"author": "guihkx",
"devDependencies": {
"standard": "17.1.0",
"web-ext": "8.0.0"
},
"scripts": {
"build": "web-ext build",
"standard:check": "standard --verbose ./src/**/*.js",
"standard:fix": "standard --fix --verbose ./src/**/*.js",
"start:chromium": "web-ext run --target chromium",
"start:firefox": "web-ext run --target firefox-desktop"
},
"standard": {
"envs": [
"browser",
"webextensions"
]
},
"webExt": {
"artifactsDir": "web-ext-artifacts",
"build": {
"overwriteDest": true
},
"ignoreFiles": [
"**/*.js.map"
],
"run": {
"startUrl": [
"https://accounts.spotify.com/en/login?continue=https://open.spotify.com/",
"https://www.deezer.com/us/login/email?redirect_type=page&redirect_link=/us/playlist/1996494362",
"https://listen.tidal.com/login?autoredirect=true&lang=en",
"https://app.idagio.com/login?to=/discover"
]
},
"sourceDir": "src",
"verbose": false
}
}