Files
monsoon/package.json
rob thijssen f7f97d084a
Some checks failed
CI / Format, lint, build, test (push) Successful in 6m2s
CI / Build SRPM (push) Failing after 34s
CI / Publish to COPR (push) Has been skipped
fix: approve esbuild build script in package.json, remove || true
Use pnpm.onlyBuiltDependencies in both package.json files to
explicitly allow esbuild's postinstall script. This is the proper
declarative mechanism -- no runtime hacks needed in CI.

Remove all || true patterns from the build pipeline.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-05 18:19:31 +03:00

26 lines
580 B
JSON

{
"name": "monsoon",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"pnpm": {
"onlyBuiltDependencies": ["esbuild"]
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tauri-apps/api": "^2.5.0",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-notification": "^2.2.0",
"@tauri-apps/plugin-opener": "^2.3.0",
"svelte": "^5.0.0",
"typescript": "^5.7.0",
"vite": "^6.0.0"
}
}