-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.27 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "mousehunt-improved",
"version": "0.99.12",
"description": "Improve your MouseHunt experience.",
"author": "Brad Parbs <brad@bradparbs.com> (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"
},
"main": "dist/mousehunt-improved.min.js",
"files": [
"dist/mousehunt-improved.min.js"
],
"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:quick": "bun run scripts/build.mjs all --skip-external-files",
"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 && oxfmt src/data/map-groups",
"get-changelog": "bun run scripts/get-changelog.mjs",
"get-version": "bun run scripts/get-version.mjs",
"lint:css:fix": "stylelint 'src/**/*.css' --fix --cache --config .stylelintrc.json",
"lint:css": "stylelint 'src/**/*.css' --cache --config .stylelintrc.json",
"lint:fix": "concurrently \"bun:lint:*:fix\"",
"lint:fmt:fix": "oxfmt src scripts",
"lint:fmt": "oxfmt --check src scripts",
"lint:js:fix": "oxlint --fix src scripts",
"lint:js": "oxlint src scripts",
"lint:md:fix": "markdownlint-cli2 --fix 'docs/**/*.md'",
"lint:md": "markdownlint-cli2 'docs/**/*.md'",
"lint": "concurrently \"bun:lint:*(!fix|md)\"",
"release:publish": "./scripts/release --publish",
"release": "./scripts/release"
},
"dependencies": {
"@babel/runtime": "^7.29.7",
"@sentry/browser": "^10.66.0",
"highcharts": "^13.0.0"
},
"devDependencies": {
"@sentry/cli": "^3.6.0",
"@sprout2000/esbuild-copy-plugin": "^1.1.19",
"archiver": "^7.0.1",
"chalk": "^5.6.2",
"chrome-webstore-upload-cli": "^3.5.0",
"concurrently": "^9.2.4",
"del-cli": "^7.0.0",
"esbuild": "^0.27.7",
"fast-glob": "^3.3.3",
"json-minify": "^1.0.0",
"markdownlint-cli2": "^0.23.1",
"node-fetch": "^3.3.2",
"ora": "^9.4.1",
"oxfmt": "^0.59.0",
"oxlint": "^1.74.0",
"prettier": "^3.9.5",
"pretty-ms": "^9.3.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": "^9.4.0",
"yargs": "17.7.2"
}
}