deploy-quinn-my (and any workspace build) hung for the full job timeout at the `lixbuild` step with zero output, then got killed. Root cause: package.json + bun.lock pinned two deps to npm.apricot.lan dev-version tarballs — @lilith/ui-imessage -> http://npm.apricot.lan:4874/...1.0.3-dev....tgz (root) @lilith/ui-messaging -> http://npm.apricot.lan:4874/...1.2.4-dev....tgz (messages/frontend-user) Apricot was decommissioned 2026-06-19, so npm.apricot.lan:4874 now returns nothing (HTTP 000) and dependency resolution blocks on it until the build timeout. The 1.0.3-dev / 1.2.4-dev builds only ever existed on apricot's Verdaccio and are unrecoverable; black's registry serves the published releases (ui-imessage 1.0.2, ui-messaging 1.2.3). Repoint both to those and regenerate bun.lock against npm.black.lan — 0 apricot refs remain, all @lilith tarball URLs now point at forge.black.lan (reachable from the on-black runner). frozen-lockfile check passes clean. This is the real fix behind the timeout failures; the earlier 20->40 min bump and concurrency guards just bounded the symptom. Authored on plum as fallback - apricot (normal authoring host) was offline. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
48 lines
1.4 KiB
JSON
48 lines
1.4 KiB
JSON
{
|
|
"name": "@lilith/messages-frontend-user",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite --port 5175",
|
|
"build": "lixbuild",
|
|
"typecheck": "tsc --noEmit",
|
|
"preview": "vite preview",
|
|
"lint": "eslint src"
|
|
},
|
|
"dependencies": {
|
|
"@dnd-kit/core": "^6.3.1",
|
|
"@dnd-kit/sortable": "^10.0.0",
|
|
"@dnd-kit/utilities": "^3.2.2",
|
|
"@lilith/quinn-app-switcher": "*",
|
|
"@lilith/ui-error-pages": "^1.1.17",
|
|
"@lilith/ui-feedback": "1.4.3",
|
|
"@lilith/ui-layout": "1.3.2",
|
|
"@lilith/ui-messaging": "1.2.3",
|
|
"@lilith/ui-primitives": "1.2.19",
|
|
"@lilith/ui-router": "1.3.2",
|
|
"@lilith/ui-styled-components": "6.3.9",
|
|
"@lilith/ui-tables": "1.0.1",
|
|
"@lilith/ui-theme": "1.5.2",
|
|
"@lilith/vite-version-plugin": "^1.2.0",
|
|
"@tanstack/react-query": "^5.0.0",
|
|
"lucide-react": "^0.553.0",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@lilith/eslint-plugin-file-length": "^1.1.2",
|
|
"@lilith/lix-build": "^1.0.7",
|
|
"@lilith/lix-test": "^1.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"@vitejs/plugin-react": "^4.3.0",
|
|
"eslint": "^10.1.0",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"typescript": "^5.7.0",
|
|
"typescript-eslint": "^8.58.0",
|
|
"vite": "^6.0.0"
|
|
}
|
|
}
|