-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
45 lines (45 loc) · 1.66 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
{
"name": "better-rym",
"version": "5.1.0",
"displayName": "BetterRYM",
"author": "jgchk",
"description": "Improvements for RateYourMusic",
"type": "module",
"scripts": {
"build": "vite build",
"watch": "vite build --watch --mode development --minify false",
"dev": "vite",
"serve:firefox": "web-ext run --start-url \"https://rateyourmusic.com/release/album/electric-wizard/dopethrone/\" --source-dir ./dist/ --firefox-profile profiles/firefox --keep-profile-changes",
"serve:chrome": "web-ext run -t chromium --start-url \"https://rateyourmusic.com/release/album/electric-wizard/dopethrone/\" --source-dir ./dist/ --chromium-profile profiles/chromium --keep-profile-changes",
"zip": "rm brym.zip || true && cd dist && atool -a ../brym.zip *",
"test": "vitest",
"lint": "prettier --check . && tsc --noEmit && eslint .",
"format": "prettier --write ."
},
"license": "GPL-3.0-or-later",
"dependencies": {
"get-artist-title": "^1.3.1",
"nanoid": "^5.0.7",
"preact": "^10.19.2",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@preact/preset-vite": "^2.7.0",
"@samrum/vite-plugin-web-extension": "^5.1.1",
"@types/chrome": "^0.0.254",
"@types/webextension-polyfill": "^0.10.6",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.9.0",
"postcss-nested": "^6.2.0",
"postcss-preset-env": "^10.0.5",
"prettier": "^3.3.3",
"typescript": "^5.2.2",
"typescript-eslint": "^8.7.0",
"vite": "^5.0.0",
"vitest": "^2.1.1",
"web-ext": "^7.8.0"
}
}