forked from web-scrobbler/web-scrobbler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.83 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
{
"name": "web-scrobbler",
"version": "3.2.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": "eslint . --ext .ts,.tsx && stylelint \"**/*.scss\" && prettier . --check && 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": {
"@suid/icons-material": "0.6.11",
"@web-scrobbler/metadata-filter": "3.0.2",
"blueimp-md5": "2.19.0",
"stylelint": "15.10.3",
"vite": "4.4.9",
"webextension-polyfill": "0.10.0"
},
"devDependencies": {
"@types/archiver": "5.3.3",
"@types/blueimp-md5": "2.18.0",
"@types/fs-extra": "11.0.2",
"@types/imagemin": "8.0.1",
"@types/imagemin-jpegtran": "5.0.2",
"@types/node": "20.8.0",
"@types/react": "18.2.24",
"@types/webextension-polyfill": "0.10.4",
"@typescript-eslint/eslint-plugin": "6.7.3",
"@web-scrobbler/eslint-config": "3.0.0",
"@web-scrobbler/stylelint-config": "1.0.1",
"archiver": "6.0.1",
"canvas": "2.11.2",
"chokidar": "3.5.3",
"esbuild": "0.19.4",
"eslint": "8.50.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-solid": "0.13.0",
"eslint-plugin-tsdoc": "0.2.17",
"fs-extra": "11.1.1",
"glob": "10.3.10",
"imagemin": "8.0.1",
"imagemin-jpegtran": "7.0.0",
"imagemin-pngquant": "9.0.2",
"prettier": "3.0.3",
"prettier-config-web-scrobbler": "0.1.0",
"remark": "15.0.1",
"remark-cli": "12.0.0",
"remark-preset-lint-recommended": "6.1.3",
"sass": "1.68.0",
"solid-js": "1.7.12",
"tsx": "3.13.0",
"typescript": "5.2.2",
"vite-plugin-conditional-compiler": "0.2.0",
"vite-plugin-solid": "2.7.0",
"vite-plugin-static-copy": "0.17.0",
"vitest": "0.34.6"
},
"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"
}