forked from web-scrobbler/web-scrobbler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.18 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
{
"name": "web-scrobbler",
"version": "3.22.0",
"author": "David Šabata <posta@davidsabata.cz>",
"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": "run-p lint:eslint lint:stylelint lint:prettier lint:markdown lint:circular",
"lint:eslint": "eslint .",
"lint:stylelint": "stylelint \"**/*.scss\"",
"lint:prettier": "prettier . --check",
"lint:markdown": "remark .",
"lint:circular": "madge --extensions ts,tsx --circular src",
"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://webscrobbler.com/",
"dependencies": {
"@web-scrobbler/metadata-filter": "3.2.0",
"blueimp-md5": "2.19.0",
"stylelint": "16.24.0",
"vite": "7.3.2",
"webextension-polyfill": "0.12.0"
},
"devDependencies": {
"@types/archiver": "6.0.3",
"@types/blueimp-md5": "2.18.2",
"@types/fs-extra": "11.0.4",
"@types/imagemin": "9.0.1",
"@types/imagemin-jpegtran": "5.0.4",
"@types/node": "24.10.0",
"@types/react": "19.1.13",
"@types/webextension-polyfill": "0.12.5",
"@web-scrobbler/eslint-config": "4.0.0",
"@web-scrobbler/stylelint-config": "2.0.0",
"archiver": "7.0.1",
"canvas": "3.2.0",
"chokidar": "4.0.3",
"esbuild": "0.25.11",
"eslint": "9.39.2",
"eslint-plugin-jsdoc": "62.9.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-solid": "0.14.5",
"eslint-plugin-tsdoc": "0.5.2",
"fs-extra": "11.3.2",
"glob": "11.1.0",
"imagemin": "9.0.1",
"imagemin-jpegtran": "8.0.0",
"imagemin-pngquant": "10.0.0",
"madge": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "3.6.2",
"prettier-config-web-scrobbler": "0.1.0",
"remark": "15.0.1",
"remark-cli": "12.0.1",
"remark-preset-lint-recommended": "7.0.1",
"sass": "1.93.3",
"solid-js": "1.9.11",
"tsx": "4.20.6",
"typescript": "5.9.2",
"typescript-eslint": "8.44.0",
"vite-plugin-conditional-compiler": "0.3.1",
"vite-plugin-solid": "2.11.12",
"vite-plugin-static-copy": "3.1.2",
"vitest": "3.2.4"
},
"engines": {
"node": ">=18.0.0"
},
"eslintConfig": {
"extends": "@web-scrobbler/eslint-config/solid",
"parserOptions": {
"sourceType": "script",
"ecmaVersion": 2022
}
},
"prettier": "prettier-config-web-scrobbler",
"remark": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"stylelint": {
"extends": "@web-scrobbler/stylelint-config",
"rules": {
"at-rule-prelude-no-invalid": null,
"declaration-property-value-no-unknown": null
}
},
"license": "MIT"
}