Files
miniminu/package.json
Julien Calixte e4fb05aa27 fix: include linux-x64 in pnpm supportedArchitectures for rolldown binding
Ensures @rolldown/binding-linux-x64-gnu is fetched even when installing
on a non-linux host, fixing the nixpacks Docker build.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-15 00:31:36 +01:00

34 lines
687 B
JSON

{
"name": "miniminu",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"@vueuse/core": "^14.2.1",
"luxon": "^3.7.2",
"vue": "^3.5.30",
"vue-router": "4"
},
"pnpm": {
"supportedArchitectures": {
"os": ["current", "linux"],
"cpu": ["current", "x64"],
"libc": ["current", "glibc"]
}
},
"devDependencies": {
"@types/luxon": "^3.7.1",
"@vitejs/plugin-vue": "^6.0.5",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vitest": "^4.1.0",
"vue-tsc": "^3.2.5"
}
}