Files
medusa-store/packages/admin/admin-bundler/package.json
Kasper Fabricius Kristensen 47edd01dee fix(admin-vite-plugin,admin-bundler,ui,icons,dashboard,framework,types): Update Vite dependencies (#11414)
**What**
- Bumps the versions of Vite across the entire stack, to prevent an issue similar to what is described here: https://github.com/vitejs/vite/discussions/18271

Not entirely sure what was happening as I couldn't reproduce the issue, but Adrien faced the issue yesterday when working with local versions of our packages. It does appear as if the range we had before could lead to a version of Vite to be installed with said bug.
2025-02-12 10:09:39 +00:00

48 lines
1.2 KiB
JSON

{
"name": "@medusajs/admin-bundler",
"version": "2.5.0",
"description": "Bundler for the Medusa admin dashboard.",
"author": "Kasper Kristensen <kasper@medusajs.com>",
"scripts": {
"build": "tsup && copyfiles -f ./src/index.html ./src/entry.tsx ./src/index.css ./dist"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/medusajs/medusa",
"directory": "packages/admin/admin-bundler"
},
"files": [
"dist",
"package.json"
],
"devDependencies": {
"@medusajs/types": "^2.5.0",
"@types/compression": "^1.7.5",
"copyfiles": "^2.4.1",
"express": "^4.21.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@medusajs/admin-shared": "2.5.0",
"@medusajs/admin-vite-plugin": "2.5.0",
"@medusajs/dashboard": "2.5.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"compression": "^1.7.4",
"express": "^4.21.0",
"get-port": "^5.1.1",
"glob": "^10.3.10",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
"vite": "^5.4.14"
},
"peerDependencies": {
"react-dom": "^18.0.0"
},
"packageManager": "yarn@3.2.1"
}