Files
flights_web/package.json
T
gnezim 5cce054f36 Upgrade vitest to v3 to patch transitive esbuild CVE
Vitest 2 pulled Vite 5 + esbuild 0.21 (GHSA-67mh-4wv8-2f99). Bumping
vitest/@vitest/ui to v3 and adding vite ^6 as a direct dev dep forces
peer resolution onto Vite 6 + esbuild 0.25, which also clears the Vite
path-traversal advisory (GHSA-4w7w-66w2-5vf9). pnpm audit is now clean.
2026-04-14 21:52:04 +03:00

38 lines
1.1 KiB
JSON

{
"name": "@aeroflot/flights-web",
"version": "0.0.0",
"private": true,
"description": "Aeroflot Flights — Modern.js + MF 2.0 React remote component (Phase 1 foundation)",
"license": "UNLICENSED",
"type": "module",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.0",
"scripts": {
"dev": "echo \"dev script wired in 1A-2\" && exit 1",
"build:standalone": "echo \"build:standalone wired in 1A-2\" && exit 1",
"build:remote": "echo \"build:remote wired in 1A-2\" && exit 1",
"build:both": "pnpm build:standalone && pnpm build:remote",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint \"src/**/*.{ts,tsx}\" --max-warnings 0",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/ui": "^3.0.0",
"eslint": "^9.0.0",
"eslint-plugin-unused-imports": "^4.0.0",
"typescript": "^5.5.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
}
}