-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.07 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
{
"name": "discogs-submitter",
"type": "module",
"version": "3.3.6",
"description": "Parse release data from Bandcamp, Qobuz, Juno Download, Beatport, 7digital, Amazon Music, Bleep, HDtracks and submit releases to Discogs.",
"author": "Denis G. <https://github.com/denis-g>",
"license": "MIT",
"funding": "https://buymeacoffee.com/denis_g",
"homepage": "https://github.com/denis-g/userscript-discogs-submitter",
"repository": {
"type": "git",
"url": "git+https://github.com/denis-g/userscript-discogs-submitter.git"
},
"bugs": {
"url": "https://github.com/denis-g/userscript-discogs-submitter/issues"
},
"keywords": [
"userscript",
"tampermonkey-userscript",
"violentmonkey-userscript",
"discogs",
"bandcamp",
"qobuz",
"junodownload",
"beatport",
"7digital",
"amazonmusic",
"bleep",
"hdtracks"
],
"main": "discogs-submitter.user.js",
"engines": {
"node": ">=22.22.1"
},
"scripts": {
"dev": "vite",
"typecheck": "tsc --noEmit",
"clean": "rm -f discogs-submitter.user.js",
"prepare": "husky",
"lint": "eslint --cache",
"lint:fix": "eslint --fix --cache",
"test": "vitest",
"test:run": "vitest run",
"build": "vite build",
"prebuild": "concurrently --kill-others-on-fail \"npm:typecheck\" \"npm:lint\" \"npm:test:run\" && npm run clean",
"postbuild": "eslint --config eslint.userscript.config.js --fix --no-cache ./discogs-submitter.user.js",
"watch": "vite build --watch"
},
"devDependencies": {
"@antfu/eslint-config": "^9.2.0",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@types/node": "^22.20.1",
"@types/tampermonkey": "^5.0.5",
"concurrently": "^10.0.4",
"eslint-plugin-format": "^2.0.1",
"eslint-plugin-userscripts": "^0.5.6",
"globals": "^17.8.0",
"happy-dom": "^20.11.1",
"husky": "^9.1.7",
"lint-staged": "^17.2.0",
"prettier-plugin-css-order": "^2.2.0",
"typescript": "^6.0.3",
"vite": "^8.2.0",
"vite-plugin-monkey": "^8.1.0",
"vitest": "^4.1.10"
}
}