-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.82 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
{
"name": "musicbrainz-userscripts",
"version": "1.0.0",
"description": "Collection of userscripts for MusicBrainz",
"keywords": [
"import",
"improvements",
"musicbrainz",
"ui",
"userscripts"
],
"homepage": "https://github.com/murdos/musicbrainz-userscripts#readme",
"bugs": {
"url": "https://github.com/murdos/musicbrainz-userscripts/issues"
},
"license": "SEE LICENSE IN individual userscripts",
"author": "Aurélien Mino <aurelien.mino@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/murdos/musicbrainz-userscripts.git"
},
"type": "module",
"scripts": {
"build": "node --strip-types src/build/build.ts",
"build:watch": "node --strip-types src/build/build.ts --watch",
"bump-versions": "node --strip-types src/build/bump-versions-if-changed.ts",
"type-check": "tsgo",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "pnpm run oxlint && pnpm run eslint",
"lint-fix": "pnpm run eslint -- --fix",
"oxlint": "oxlint --type-aware",
"eslint": "eslint .",
"check": "pnpm run format:check && pnpm run type-check && pnpm run lint",
"test": "vitest run",
"test:discogs": "vitest run tests/discogs",
"test:discogs:update-snapshots": "node --strip-types tests/discogs/update-snapshots.ts && oxfmt tests/discogs/snapshots",
"test:discogs:update-fixtures": "node --strip-types tests/discogs/fetch-fixtures.ts && pnpm run format tests/discogs/fixtures",
"test:watch": "vitest",
"generate-readme": "node --strip-types ./tools/generate-readme.ts > README.md",
"prepare": "husky"
},
"devDependencies": {
"@babel/core": "^8.0.1",
"@babel/preset-env": "^8.0.1",
"@babel/preset-typescript": "^8.0.1",
"@eslint/js": "^9.38.0",
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-babel": "^7.1.0",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@types/node": "^24.8.1",
"@types/tampermonkey": "^5.0.5",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"eslint": "^9.38.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-userscripts": "^0.5.6",
"globals": "^16.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.4",
"oxfmt": "^0.65.0",
"oxlint": "^1.70.0",
"oxlint-tsgolint": "^0.25.0",
"rollup": "^4.62.0",
"typescript-eslint": "^8.46.1",
"vitest": "^4.1.9",
"zod": "^4.4.3"
},
"lint-staged": {
"*.{json,md,yml}": "oxfmt",
"*.{js,ts,tsx}": "eslint --fix"
},
"engines": {
"node": "24.x"
},
"packageManager": "pnpm@11.10.0"
}