-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathpackage.json
More file actions
176 lines (176 loc) · 6.19 KB
/
package.json
File metadata and controls
176 lines (176 loc) · 6.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
{
"name": "thunderbolt",
"private": true,
"version": "0.1.87",
"description": "Thunderbolt",
"type": "module",
"license": "MPL-2.0",
"scripts": {
"test": "bun test ./src ./scripts ./.github/scripts --timeout 5000 --randomize",
"test:5x": "bun test ./src ./scripts ./.github/scripts --timeout 5000 --randomize --rerun-each 5",
"test:watch": "bun test ./src ./scripts ./.github/scripts --watch",
"test:backend": "cd backend && bun test --timeout 5000 --randomize",
"test:backend:5x": "cd backend && bun test --timeout 5000 --randomize --rerun-each 5",
"test:backend:watch": "cd backend && bun test --watch",
"start": "vite",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev:desktop": "tauri dev --config src-tauri/tauri.dev.conf.json",
"tauri:dev:android": "tauri android dev --config src-tauri/tauri.dev.conf.json",
"tauri:dev:ios": "tauri ios dev --config src-tauri/tauri.dev.conf.json",
"analyze": "vite analyze",
"db": "drizzle-kit",
"eval": "bun run src/ai/eval/run.ts",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:rust": "cd src-tauri && cargo fmt && cd ..",
"format:rust-check": "cd src-tauri && cargo fmt --check && cd ..",
"format-check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"type-check": "tsc --noEmit",
"check": "bun run type-check && bun run lint && bun run format-check",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky",
"size": "size-limit",
"e2e": "bunx playwright test",
"e2e:headed": "bunx playwright test --headed",
"docker:nuke": "bash scripts/docker-nuke.sh"
},
"size-limit": [
{
"name": "JS bundle",
"path": "dist/assets/*.js",
"gzip": true
}
],
"dependencies": {
"@ai-sdk/anthropic": "^3.0.14",
"@ai-sdk/mcp": "^1.0.9",
"@ai-sdk/openai": "^3.0.11",
"@ai-sdk/openai-compatible": "^2.0.12",
"@ai-sdk/react": "^3.0.39",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.2.1",
"@journeyapps/wa-sqlite": "^1.5.0",
"@modelcontextprotocol/sdk": "^1.25.2",
"@noble/post-quantum": "^0.6.0",
"@openrouter/ai-sdk-provider": "^1.1.2",
"@powersync/common": "1.48.0",
"@powersync/drizzle-driver": "0.7.2",
"@powersync/react": "1.9.0",
"@powersync/tanstack-react-query": "0.2.1",
"@powersync/web": "1.35.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@scure/bip39": "^2.0.1",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-query": "^5.85.5",
"@tauri-apps/api": "^2.9.0",
"@tauri-apps/plugin-deep-link": "^2.4.5",
"@tauri-apps/plugin-fs": "^2.4.4",
"@tauri-apps/plugin-haptics": "^2.3.2",
"@tauri-apps/plugin-http": "^2.5.4",
"@tauri-apps/plugin-opener": "^2.5.2",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-store": "^2.4.2",
"@tauri-apps/plugin-updater": "^2.9.0",
"ai": "^6.0.37",
"better-auth": "^1.4.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dayjs": "^1.11.13",
"drizzle-orm": "^0.45.2",
"framer-motion": "^12.23.12",
"input-otp": "^1.4.2",
"lucide-react": "^0.540.0",
"marked": "^16.4.1",
"posthog-js": "^1.288.1",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-hook-form": "^7.62.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^3.0.4",
"react-router": "^7.12.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.1.0",
"web-haptics": "^0.0.6",
"zod": "^4.0.17",
"zustand": "^5.0.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.1",
"@emotion/is-prop-valid": "^1.4.0",
"@eslint/js": "^9.33.0",
"@happy-dom/global-registrator": "^20.0.8",
"@playwright/test": "^1.58.2",
"@sinonjs/fake-timers": "^15.0.0",
"@size-limit/file": "^12.0.1",
"@storybook/addon-a11y": "^9.1.3",
"@storybook/addon-docs": "^9.1.3",
"@storybook/addon-onboarding": "^9.1.3",
"@storybook/addon-vitest": "^9.1.3",
"@storybook/react-vite": "^9.1.3",
"@tailwindcss/vite": "4.1.12",
"@tauri-apps/cli": "^2.9.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/bun": "^1.2.20",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@types/sinonjs__fake-timers": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"@vitejs/plugin-react": "^5.0.1",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"bun-types": "^1.2.20",
"dotenv": "^17.2.1",
"drizzle-kit": "^0.31.4",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-storybook": "^9.1.3",
"globals": "^16.3.0",
"happy-dom": "^20.0.8",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.5",
"msw": "^2.10.5",
"oauth2-mock-server": "^8.2.2",
"playwright": "^1.58.2",
"prettier": "^3.6.2",
"size-limit": "^12.0.1",
"storybook": "^9.1.3",
"tailwindcss": "4.1.12",
"tsx": "^4.20.4",
"type-fest": "^4.41.0",
"typescript": "~5.9.2",
"vite": "^7.3.2",
"vite-bundle-analyzer": "^1.2.1",
"vitest": "^3.2.4"
}
}