{ "name": "simple-react-app-kit", "version": "0.0.1", "private": true, "scripts": { "build": "bun run --filter web build", "check": "bun run format:check && bun run lint && bun run typecheck", "dev": "bun run --filter web dev", "format": "oxfmt apps packages package.json tsconfig.json .oxlintrc.json .oxfmtrc.json", "format:check": "oxfmt --check apps packages package.json tsconfig.json .oxlintrc.json .oxfmtrc.json", "lint": "oxlint .", "lint:fix": "oxlint --fix .", "typecheck": "bun run --workspaces typecheck" }, "devDependencies": { "oxfmt": "^0.61.0", "oxlint": "^1.76.0", "typescript": "~6" }, "packageManager": "bun@1.3.5", "engines": { "node": ">=20" }, "workspaces": [ "apps/*", "packages/*" ] }