| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | {  "name": "@vitejs/plugin-legacy",  "version": "5.3.2",  "license": "MIT",  "author": "Evan You",  "files": [    "dist"  ],  "keywords": [    "frontend",    "vite",    "vite-plugin",    "@vitejs/plugin-legacy"  ],  "main": "./dist/index.cjs",  "module": "./dist/index.mjs",  "types": "./dist/index.d.ts",  "exports": {    ".": {      "import": "./dist/index.mjs",      "require": "./dist/index.cjs"    }  },  "engines": {    "node": "^18.0.0 || >=20.0.0"  },  "repository": {    "type": "git",    "url": "git+https://github.com/vitejs/vite.git",    "directory": "packages/plugin-legacy"  },  "bugs": {    "url": "https://github.com/vitejs/vite/issues"  },  "homepage": "https://github.com/vitejs/vite/tree/main/packages/plugin-legacy#readme",  "funding": "https://github.com/vitejs/vite?sponsor=1",  "dependencies": {    "@babel/core": "^7.23.9",    "@babel/preset-env": "^7.23.9",    "browserslist": "^4.23.0",    "browserslist-to-esbuild": "^2.1.1",    "core-js": "^3.36.0",    "magic-string": "^0.30.7",    "regenerator-runtime": "^0.14.1",    "systemjs": "^6.14.3"  },  "peerDependencies": {    "terser": "^5.4.0",    "vite": "^5.0.0"  },  "devDependencies": {    "acorn": "^8.11.3",    "picocolors": "^1.0.0",    "vite": "5.1.5"  },  "scripts": {    "dev": "unbuild --stub",    "build": "unbuild && pnpm run patch-cjs",    "patch-cjs": "tsx ../../scripts/patchCJS.ts"  }}
 |