feat(web): add error boundaries, expand test coverage, add README
- Add class-based ErrorBoundary component wrapping all 7 main views
inside WorkspaceChrome; fallback shows view name, error, reload button
- Add 30 new unit tests (boot null-project path × 9, onboarding
pure-function logic × 21); all 43 web/lib tests pass
- Add web/README.md: architecture, auth flow, 7 views, dev setup,
API route pattern, test instructions
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-05-10 11:24:40 +02:00
|
|
|
{
|
|
|
|
|
"name": "@singularity-forge/coding-agent",
|
|
|
|
|
"version": "2.75.3",
|
|
|
|
|
"description": "Coding agent CLI (vendored from pi-mono)",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"piConfig": {
|
|
|
|
|
"name": "sf",
|
|
|
|
|
"configDir": ".sf"
|
|
|
|
|
},
|
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/index.js"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2026-05-10 11:58:58 +02:00
|
|
|
"build": "tsgo -p tsconfig.json && npm run copy-assets",
|
feat(web): add error boundaries, expand test coverage, add README
- Add class-based ErrorBoundary component wrapping all 7 main views
inside WorkspaceChrome; fallback shows view name, error, reload button
- Add 30 new unit tests (boot null-project path × 9, onboarding
pure-function logic × 21); all 43 web/lib tests pass
- Add web/README.md: architecture, auth flow, 7 views, dev setup,
API route pattern, test instructions
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-05-10 11:24:40 +02:00
|
|
|
"copy-assets": "node scripts/copy-assets.cjs"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@mariozechner/jiti": "^2.6.2",
|
|
|
|
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
|
|
|
"chalk": "^5.5.0",
|
|
|
|
|
"diff": "^9.0.0",
|
|
|
|
|
"express": "^5.2.1",
|
|
|
|
|
"extract-zip": "^2.0.1",
|
|
|
|
|
"file-type": "^21.3.4",
|
|
|
|
|
"hosted-git-info": "^9.0.3",
|
|
|
|
|
"ignore": "^7.0.5",
|
|
|
|
|
"marked": "^18.0.3",
|
|
|
|
|
"minimatch": "^10.2.5",
|
|
|
|
|
"proper-lockfile": "^4.1.2",
|
|
|
|
|
"strip-ansi": "^7.2.0",
|
|
|
|
|
"undici": "^8.2.0",
|
|
|
|
|
"yaml": "^2.8.4"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/diff": "^7.0.2",
|
|
|
|
|
"@types/express": "^4.17.21",
|
|
|
|
|
"@types/hosted-git-info": "^3.0.5",
|
|
|
|
|
"@types/proper-lockfile": "^4.1.4"
|
|
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=26.1.0"
|
|
|
|
|
}
|
|
|
|
|
}
|