forked from murdos/musicbrainz-userscripts
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.15 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.15 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": "musicbrainz-userscripts",
"version": "1.0.0",
"description": "Collection of userscripts for MusicBrainz",
"type": "module",
"scripts": {
"build": "tsx src/build/build.ts",
"build:watch": "tsx src/build/build.ts --watch",
"type-check": "tsc --noEmit",
"prettier:format": "prettier --write .",
"lint": "pnpm run eslint",
"lint-fix": "pnpm run eslint -- --fix",
"eslint": "eslint .",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/murdos/musicbrainz-userscripts.git"
},
"keywords": [
"musicbrainz",
"userscripts",
"import",
"ui",
"improvements"
],
"author": "Aurélien Mino <[email protected]>",
"license": "SEE LICENSE IN individual userscripts",
"bugs": {
"url": "https://github.com/murdos/musicbrainz-userscripts/issues"
},
"homepage": "https://github.com/murdos/musicbrainz-userscripts#readme",
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.38.0",
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@types/greasemonkey": "^4.0.7",
"@types/jquery": "^2.0.54",
"@types/node": "^24.8.1",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-userscripts": "^0.5.6",
"globals": "^16.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.4",
"prettier": "^3.6.2",
"rollup": "^4.52.5",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.46.1",
"zod": "^4.1.12"
},
"packageManager": "[email protected]",
"engines": {
"node": "24.x"
},
"lint-staged": {
"*.{json,md,yml}": "prettier --write",
"*.{js,ts,tsx}": "eslint --fix"
}
}