forked from turbostarter/extro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.09 KB
/
package.json
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
{
"name": "extro",
"version": "1.0.0",
"description": "Open source browser extension starter kit.",
"license": "MIT",
"author": "Bartosz Zagrodzki",
"scripts": {
"build": "run-p build:chrome build:firefox",
"build:chrome": "wxt zip",
"build:firefox": "wxt -b firefox zip",
"dev": "bun dev:chrome",
"dev:chrome": "wxt",
"dev:firefox": "wxt -b firefox",
"lint": "biome check",
"lint:fix": "biome check --write",
"prepare": "husky",
"typecheck": "tsc --noEmit",
"postinstall": "wxt prepare"
},
"dependencies": {
"@biomejs/biome": "^1.9.4",
"@hookform/resolvers": "^3.9.1",
"@openpanel/web": "^1.0.1",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@supabase/supabase-js": "^2.46.1",
"@t3-oss/env-core": "0.11.1",
"@tanstack/react-query": "^5.59.16",
"@webext-core/messaging": "^2.1.0",
"ai": "^3.4.32",
"chrome-ai": "^1.11.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.454.0",
"marked": "^14.1.3",
"next-themes": "^0.3.0",
"npm-run-all": "^4.1.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.53.1",
"react-router-dom": "^6.28.0",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"vite-plugin-svgr": "^4.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "19.4.1",
"@commitlint/config-conventional": "19.4.1",
"@commitlint/types": "19.0.3",
"@tailwindcss/typography": "^0.5.15",
"@total-typescript/ts-reset": "^0.6.1",
"@types/bun": "^1.1.13",
"@types/chrome": "0.0.270",
"@types/node": "20.16.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@wxt-dev/auto-icons": "^1.0.2",
"@wxt-dev/module-react": "^1.1.2",
"husky": "^9.1.6",
"typescript": "^5.6.3",
"vitest": "^2.1.5",
"wxt": "^0.19.16"
}
}