forked from web-scrobbler/web-scrobbler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.97 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
{
"name": "web-scrobbler",
"version": "3.12.0",
"author": "David Šabata <[email protected]>",
"contributors": [
"@mountainash (https://mountainash.id.au/)"
],
"description": "Scrobble music all around the web!",
"private": true,
"type": "module",
"scripts": {
"dist": "npm run build dist",
"dev": "npm run build dev",
"build": "tsx build.ts",
"checkts": "tsc --noEmit && tsc --noEmit --project tsconfig.connectors.json",
"test": "vitest",
"lint": "npm run lint:eslint && npm run lint:stylelint && npm run lint:prettier && npm run lint:markdown",
"lint:eslint": "eslint . --ext .ts,.tsx",
"lint:stylelint": "stylelint \"**/*.scss\"",
"lint:prettier": "prettier . --check",
"lint:markdown": "remark .",
"prettierfix": "prettier . --write",
"fixstyle": "stylelint \"**/*.scss\" --fix",
"translations": "tx pull -m onlytranslated && tsx scripts/translations-prepare.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-scrobbler/web-scrobbler.git"
},
"bugs": {
"url": "https://github.com/web-scrobbler/web-scrobbler/issues"
},
"homepage": "https://web-scrobbler.com/",
"dependencies": {
"@web-scrobbler/metadata-filter": "3.2.0",
"blueimp-md5": "2.19.0",
"stylelint": "15.11.0",
"vite": "6.0.7",
"webextension-polyfill": "0.12.0"
},
"devDependencies": {
"@types/archiver": "6.0.3",
"@types/blueimp-md5": "2.18.2",
"@types/fs-extra": "11.0.3",
"@types/imagemin": "9.0.0",
"@types/imagemin-jpegtran": "5.0.4",
"@types/node": "22.10.5",
"@types/react": "19.0.4",
"@types/webextension-polyfill": "0.12.1",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@web-scrobbler/eslint-config": "3.1.1",
"@web-scrobbler/stylelint-config": "1.0.1",
"archiver": "7.0.1",
"canvas": "2.11.2",
"chokidar": "4.0.3",
"esbuild": "0.24.2",
"eslint": "8.57.0",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-solid": "0.14.5",
"eslint-plugin-tsdoc": "0.2.17",
"fs-extra": "11.1.1",
"glob": "11.0.1",
"imagemin": "9.0.0",
"imagemin-jpegtran": "8.0.0",
"imagemin-pngquant": "10.0.0",
"prettier": "3.4.1",
"prettier-config-web-scrobbler": "0.1.0",
"remark": "15.0.1",
"remark-cli": "12.0.1",
"remark-preset-lint-recommended": "7.0.0",
"sass": "1.83.1",
"solid-js": "1.9.4",
"tsx": "4.19.2",
"typescript": "5.7.3",
"vite-plugin-conditional-compiler": "0.3.1",
"vite-plugin-solid": "2.11.0",
"vite-plugin-static-copy": "2.2.0",
"vitest": "2.1.8"
},
"engines": {
"node": ">=18.0.0"
},
"eslintConfig": {
"extends": "@web-scrobbler/eslint-config/solid",
"parserOptions": {
"sourceType": "script",
"ecmaVersion": 2020
}
},
"prettier": "prettier-config-web-scrobbler",
"remark": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"stylelint": {
"extends": "@web-scrobbler/stylelint-config"
},
"license": "MIT"
}