Files
mue/package.json
alexsparkes 9276daed17 feat(background): replace Mapbox static map with MapLibre + OpenFreeMap
Drops the Mapbox API dependency for maps. LocationMap is now a
lazily-loaded component that renders a MapLibre GL canvas using
OpenFreeMap tiles, with interactive: false to preserve the same
static appearance as before.

The /v2/map API proxy remains for older installed mue instances
and will be removed in a follow-up once this ships.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-04 18:47:47 +01:00

80 lines
2.6 KiB
JSON

{
"name": "mue",
"private": true,
"author": "The Mue Authors (https://github.com/mue/mue/graphs/contributors)",
"description": "Fast, open and free-to-use new tab page for modern browsers.",
"repository": {
"url": "github:mue/mue"
},
"homepage": "https://muetab.com",
"bugs": "https://github.com/mue/mue/issues/new?assignees=&labels=bug&template=bug-report.md&title=%5BBUG%5D",
"license": "BSD-3-Clause",
"version": "7.6.1",
"type": "module",
"packageManager": "bun@1.3.1",
"engines": {
"node": ">=20.0.0",
"bun": ">=1.3.0"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@eartharoid/i18n": "1.2.1",
"@floating-ui/react-dom": "2.1.6",
"@fontsource/inter": "^5.2.8",
"@fontsource/lexend-deca": "5.0.14",
"@fontsource/montserrat": "5.0.19",
"@sentry/react": "^10.36.0",
"blurhash": "^2.0.5",
"fast-blurhash": "^1.1.4",
"image-conversion": "^2.1.1",
"maplibre-gl": "^5.24.0",
"react": "^19.2.3",
"react-best-gradient-color-picker": "^3.0.14",
"react-clock": "6.0.0",
"react-dom": "^19.2.3",
"react-icons": "^5.5.0",
"react-modal": "3.16.3",
"react-router": "^7.13.0",
"react-toastify": "11.0.5",
"use-debounce": "^10.1.0"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@eartharoid/deep-merge": "^0.0.2",
"@eslint/js": "^9.39.2",
"@vitejs/plugin-react-swc": "^4.2.2",
"adm-zip": "0.5.16",
"cypress": "^15.10.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"sass": "^1.97.3",
"stylelint": "^17.0.0",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-scss": "^7.0.0",
"vite": "^7.3.1",
"vite-plugin-progress": "^0.0.7"
},
"scripts": {
"dev": "vite",
"dev:host": "vite --host",
"test:e2e": "cypress open",
"test:e2e:headless": "cypress run",
"translations": "cd scripts && node updatetranslations.cjs",
"translations:percentages": "node scripts/updateTranslationPercentages.cjs",
"translations:unused": "node scripts/findUnusedTranslations.cjs",
"build": "vite build",
"pretty": "prettier --write \"./**/*.{js,jsx,json,scss,css}\"",
"lint": "eslint \"./src/**/*.{js,jsx}\" && stylelint \"./src/**/*.{scss,css}\"",
"lint:fix": "eslint \"./src/**/*.{js,jsx}\" --fix && stylelint \"./src/**/*.{scss,css}\" --fix",
"postinstall": "husky",
"prepare": "husky"
}
}