Files
BrowserOS/apps/agent/package.json
Dani Akash c4dac9380b feat: scheduled tasks (#146)
* feat: scheduled tasks base ui

* chore: fix biome version

* fix: type issues

* chore: remove use callback

* chore: refactor scheduleStorage types

* feat: create storage hooks for job & job runs

* feat: integrate listing with store

* feat: schedule tasks dialog integration

* feat: integrate view and runs

* feat: sync alarm state

* fix: check for enabled jobs in alarm state

* feat: createAlarmFromJob utility

* feat: updated edit hooks to update alarms

* feat: getChatServerResponse util

* feat: run jobs in schedule

* feat: update job run stat with storage

* feat: discard old runs over 15

* feat: provide graph mode entry

* feat: footer link with scheduler option

* feat: use a nicer loader for task runs

* feat: schedule results component

* feat: scheduler results in new tab page

* feat: nicer date formatting with dayjs

* feat: use run-result-dialog for displaying run results in new tab

* chore: delete mocked storage methods

* chore: remove unused code

* chore: remove all job runs when a job is deleted

* feat: use shadcn elements for schedule results component

* feat: render results in markdown view

* chore: added important update on logic sharing

* chore: remove loading state in scheduledtaskslist

* feat: run the background job in a unfocused window

* feat: provide mcp options to the background scheduled tasks

* chore: clean up stale jobs on chrome restart or update

* fix: background window not cleaned up on error

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>

* chore: fix type issues

---------

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
2026-01-03 00:08:51 +05:30

97 lines
2.9 KiB
JSON

{
"name": "agent",
"description": "manifest.json description",
"private": true,
"version": "0.0.20",
"type": "module",
"scripts": {
"dev": "bun --env-file=.env.development wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare",
"lint": "bunx biome check",
"typecheck": "tsc --noEmit",
"lint:fix": "bunx biome check --write --unsafe",
"clean:cache": "rm -rf node_modules/.cache && rm -rf .output/ && rm -rf .wxt/"
},
"dependencies": {
"@ai-sdk/react": "^2.0.95",
"@hookform/resolvers": "^5.2.2",
"@lobehub/icons": "^2.44.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"@posthog/react": "^1.5.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@sentry/react": "^10.31.0",
"@sentry/vite-plugin": "^4.6.1",
"@webext-core/messaging": "^2.3.0",
"@wxt-dev/storage": "^1.2.6",
"@xyflow/react": "^12.9.3",
"ai": "^5.0.95",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dayjs": "^1.11.19",
"dompurify": "^3.3.1",
"downshift": "^9.0.10",
"embla-carousel-react": "^8.6.0",
"es-toolkit": "^1.42.0",
"klavis": "^2.15.0",
"lucide-react": "^0.554.0",
"marked": "^17.0.1",
"motion": "^12.23.24",
"nanoid": "^5.1.6",
"next-themes": "^0.4.6",
"posthog-js": "^1.304.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.66.1",
"react-router": "^7.9.5",
"shiki": "^3.15.0",
"sonner": "^2.0.7",
"streamdown": "^1.5.1",
"swr": "^2.3.6",
"tailwind-merge": "^3.4.0",
"tailwind-scrollbar-hide": "^4.0.0",
"tokenlens": "^1.3.1",
"tw-animate-css": "^1.4.0",
"use-deep-compare-effect": "^1.8.1",
"use-stick-to-bottom": "^1.1.1",
"zod": "^4.1.13"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.17",
"@types/chrome": "^0.1.28",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@wxt-dev/module-react": "^1.1.3",
"lefthook": "^2.0.3",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.2",
"wxt": "^0.20.6"
},
"trustedDependencies": [
"esbuild",
"lefthook"
]
}