mirror of
https://github.com/lukaszraczylo/claude-mnemonic.git
synced 2026-06-05 23:03:55 +00:00
7bdb523106
GoReleaser (.goreleaser.yaml before-hook) and the Makefile regenerate ui/package.json from ui/package.json.tpl at build time, then run npm ci. The deps upgrade updated ui/package.json and the lockfile but not the template, so the release hook regenerated package.json with the old deps and npm ci failed against the new lockfile. Sync the template to the upgraded versions (Vite 8, Tailwind 4, vis-network 10, FontAwesome 7, TypeScript 6, ...). Verified by replaying the hook locally: regenerate from the template then npm ci + build both pass.
29 lines
671 B
Smarty
29 lines
671 B
Smarty
{
|
|
"name": "claude-mnemonic-dashboard",
|
|
"version": "{{ .Version }}",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc -b && vite build",
|
|
"preview": "vite preview",
|
|
"type-check": "vue-tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"vis-data": "^8.0.4",
|
|
"vis-network": "^10.1.0",
|
|
"vue": "^3.5.34"
|
|
},
|
|
"devDependencies": {
|
|
"@fortawesome/fontawesome-free": "^7.2.0",
|
|
"@tailwindcss/postcss": "^4.3.0",
|
|
"@types/node": "^25.9.1",
|
|
"@vitejs/plugin-vue": "^6.0.7",
|
|
"postcss": "^8.5.15",
|
|
"tailwindcss": "^4.3.0",
|
|
"typescript": "~6.0.3",
|
|
"vite": "^8.0.14",
|
|
"vue-tsc": "^3.3.1"
|
|
}
|
|
}
|