-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
99 lines (99 loc) · 3.46 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
98
99
{
"name": "mousehunt-improved",
"version": "0.71.7",
"description": "Improve your MouseHunt experience.",
"author": "Brad Parbs <[email protected]> (https://bradparbs.com/)",
"license": "MIT",
"homepage": "https://github.com/MHCommunity/mousehunt-improved",
"repository": {
"type": "git",
"url": "https://github.com/MHCommunity/mousehunt-improved.git"
},
"bugs": {
"url": "https://github.com/MHCommunity/mousehunt-improved/issues"
},
"keywords": [
"mousehunt",
"userscript",
"extension",
"chrome",
"firefox"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build:archive": "bun run scripts/build.mjs archive",
"build:css": "bun run scripts/build.mjs css",
"build:extension:chrome": "bun run scripts/build.mjs chrome",
"build:extension:firefox": "bun run scripts/build.mjs firefox",
"build:extension": "bun run scripts/build.mjs extension",
"build:userscript": "bun run scripts/build.mjs userscript",
"build:zips": "bun run scripts/build.mjs zips",
"build": "bun run scripts/build.mjs all",
"clean": "del-cli dist",
"dev:chrome": "bun run scripts/build-extension.mjs --platform=chrome --watch",
"dev:firefox": "bun run scripts/build-extension.mjs --platform=firefox --watch",
"dev": "bun run scripts/build-extension.mjs --platform=chrome --watch",
"fix-map-groups": "bun run scripts/fix-map-groups.mjs",
"lint:css:fix": "stylelint 'src/**/*.css' --fix",
"lint:css": "stylelint 'src/**/*.css'",
"lint:fix": "concurrently \"bun:lint:*:fix\"",
"lint:js:fix": "eslint 'src/**/*.js' --fix",
"lint:js": "eslint 'src/**/*.js'",
"lint:json:fix": "eslint 'src/**/*.json' --fix",
"lint:json": "eslint 'src/**/*.json'",
"lint:md:fix": "eslint 'docs/**/*.md' --fix",
"lint:md": "eslint 'docs/**/*.md'",
"lint:scripts:fix": "eslint scripts/**/*.mjs --fix",
"lint:scripts": "eslint scripts/**/*.mjs",
"lint": "concurrently \"bun:lint:*(!fix)\"",
"release": "./scripts/release"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"@sentry/browser": "^8.37.1",
"humanize-duration": "^3.32.1",
"json2csv": "^6.0.0-alpha.2"
},
"devDependencies": {
"@sentry/cli": "^2.38.2",
"@sprout2000/esbuild-copy-plugin": "^1.1.16",
"@wordpress/eslint-plugin": "^21.4.0",
"archiver": "^7.0.1",
"chalk": "^5.3.0",
"chrome-webstore-upload-cli": "^3.3.1",
"concurrently": "^9.1.0",
"del-cli": "^6.0.0",
"esbuild": "^0.24.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-jsdoc": "^48.11.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdownlint": "^0.5.0",
"eslint-plugin-package-json": "^0.12.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-require-jsdoc": "^1.0.4",
"eslint-plugin-unicorn": "^51.0.1",
"fast-glob": "^3.3.2",
"json-minify": "^1.0.0",
"jsonc-eslint-parser": "^2.4.0",
"node-fetch": "^3.3.2",
"ora": "^8.1.1",
"prettier": "^3.3.3",
"pretty-ms": "^9.1.0",
"sentry-cli": "^0.0.0",
"stylelint": "15.11.0",
"stylelint-config-recess-order": "^4.6.0",
"stylelint-config-recommended": "13.0.0",
"stylelint-config-standard": "34.0.0",
"stylelint-order": "6.0.3",
"stylelint-prettier": "4.1.0",
"stylelint-stylistic": "^0.4.5",
"web-ext": "^8.3.0",
"yargs": "^17.7.2"
}
}