this repo has no description
1{
2 "name": "worklog",
3 "version": "0.1.0",
4 "type": "module",
5 "scripts": {
6 "cli": "bun run src/cli/index.ts",
7 "dev": "bun run scripts/dev.ts",
8 "build": "vite build",
9 "serve": "bun run src/cli/index.ts serve",
10 "typecheck": "tsgo --noEmit",
11 "lint": "eslint src/",
12 "lint:fix": "eslint src/ --fix",
13 "format": "prettier --write src/",
14 "format:check": "prettier --check src/",
15 "check": "bun run typecheck && bun run lint && bun run format:check"
16 },
17 "dependencies": {
18 "@ai-sdk/anthropic": "^2.0.56",
19 "ai": "^5.0.115",
20 "lucide-react": "^0.562.0",
21 "react": "^18.3.1",
22 "react-dom": "^18.3.1",
23 "react-router-dom": "^7.1.1",
24 "zod": "^4.2.1"
25 },
26 "devDependencies": {
27 "@eslint/js": "^9.17.0",
28 "@trivago/prettier-plugin-sort-imports": "^5.2.2",
29 "@types/bun": "latest",
30 "@types/react": "^18.3.18",
31 "@types/react-dom": "^18.3.5",
32 "@typescript/native-preview": "^7.0.0-dev.20251219.1",
33 "@vitejs/plugin-react": "^4.3.4",
34 "autoprefixer": "^10.4.20",
35 "eslint": "^9.17.0",
36 "eslint-config-prettier": "^10.0.1",
37 "postcss": "^8.4.49",
38 "prettier": "^3.4.2",
39 "tailwindcss": "^3.4.17",
40 "typescript": "^5.7.2",
41 "typescript-eslint": "^8.18.2",
42 "vite": "^6.0.6"
43 }
44}