-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.97 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
{
"name": "extro",
"version": "1.0.0",
"description": "Open source browser extension starter kit.",
"license": "MIT",
"engines": {
"node": ">=24"
},
"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": {
"@base-ui/react": "^1.5.0",
"@biomejs/biome": "^2.5.0",
"@hookform/resolvers": "^5.4.0",
"@openpanel/web": "^1.4.1",
"@supabase/supabase-js": "^2.108.1",
"@tanstack/react-query": "^5.101.0",
"@webext-core/messaging": "^3.0.2",
"ai": "^4.3.19",
"chrome-ai": "^1.11.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"envin": "^1.2.0",
"lucide-react": "^1.18.0",
"marked": "^18.0.5",
"next-themes": "^0.4.6",
"npm-run-all": "^4.1.5",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-hook-form": "^7.79.0",
"react-router-dom": "^7.17.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"vite-plugin-svgr": "^5.2.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "21.0.2",
"@commitlint/config-conventional": "21.0.2",
"@commitlint/types": "21.0.1",
"@tailwindcss/postcss": "^4.3.1",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.1",
"@total-typescript/ts-reset": "^0.6.1",
"@types/bun": "^1.3.14",
"@types/chrome": "0.1.43",
"@types/node": "25.9.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@wxt-dev/auto-icons": "^1.1.1",
"@wxt-dev/module-react": "1.1.3",
"husky": "^9.1.7",
"tailwindcss": "^4.3.1",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"wxt": "^0.20.26"
}
}