-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.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.10.0",
"@openpanel/web": "^1.0.1",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.5",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@supabase/supabase-js": "^2.48.0",
"@t3-oss/env-core": "0.11.1",
"@tanstack/react-query": "^5.64.2",
"@webext-core/messaging": "^2.2.0",
"ai": "^4.1.1",
"chrome-ai": "^1.11.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.473.0",
"marked": "^15.0.6",
"next-themes": "^0.4.4",
"npm-run-all": "^4.1.5",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.54.2",
"react-router-dom": "^7.1.3",
"sonner": "^1.7.2",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"vite-plugin-svgr": "^4.3.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/types": "19.5.0",
"@tailwindcss/typography": "^0.5.16",
"@total-typescript/ts-reset": "^0.6.1",
"@types/bun": "^1.2.0",
"@types/chrome": "0.0.299",
"@types/node": "22.10.9",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@wxt-dev/auto-icons": "^1.0.2",
"@wxt-dev/module-react": "^1.1.3",
"husky": "^9.1.7",
"typescript": "^5.7.3",
"vitest": "^3.0.3",
"wxt": "^0.19.25"
}
}