mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-07-30 19:36:01 +00:00
- one gate (motionEnabled): off under reduced-motion, missing matchMedia, and vitest; every path checks it first - mount/filter-change only: count-up and bar grow-in key off the period|provider|range key, so 30s poll refreshes snap values silently instead of re-animating - first-load skeleton shimmer replaces bare scanning text (kept sr-only for screen readers); slide-in toast host for Settings/export feedback (validation errors stay inline); CSS hover-lift + press micro- interactions, all with a reduced-motion escape hatch - gsap 3.15.0 + @gsap/react 2.1.2 (+74KB raw JS; G4 flame work shares it) 244/244, typecheck + build green.
39 lines
1.3 KiB
JSON
39 lines
1.3 KiB
JSON
{
|
|
"name": "codeburn-desktop",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"description": "CodeBurn Desktop — Electron app fed by the codeburn CLI",
|
|
"main": "dist/electron/main.js",
|
|
"scripts": {
|
|
"build:electron": "tsc -p tsconfig.electron.json",
|
|
"build:renderer": "vite build",
|
|
"build": "npm run build:electron && npm run build:renderer",
|
|
"dev": "npm run build:electron && concurrently -k -n vite,electron -c cyan,magenta \"vite\" \"wait-on tcp:127.0.0.1:5173 && cross-env VITE_DEV_SERVER_URL=http://127.0.0.1:5173 electron .\"",
|
|
"test": "vitest run",
|
|
"typecheck": "tsc --noEmit -p tsconfig.json"
|
|
},
|
|
"dependencies": {
|
|
"@gsap/react": "^2.1.2",
|
|
"gsap": "^3.15.0",
|
|
"react": "^19.2.7",
|
|
"react-dom": "^19.2.7"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/node": "^26.1.1",
|
|
"@types/react": "^19.2.17",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^4.7.0",
|
|
"@vitest/ui": "^3.2.7",
|
|
"concurrently": "^10.0.3",
|
|
"cross-env": "^10.1.0",
|
|
"electron": "^43.1.0",
|
|
"jsdom": "^29.1.1",
|
|
"typescript": "^7.0.2",
|
|
"vite": "^6.4.3",
|
|
"vitest": "^3.2.7",
|
|
"wait-on": "^9.0.10"
|
|
}
|
|
}
|