-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.63 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.63 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
{
"name": "Live Folder",
"description": "Track your github pull requests automatically and have them ready for review in your browser's bookmarks.",
"version": "0.2.1",
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare",
"format": "prettier --write .",
"lint": "eslint ./src ./entrypoints --fix",
"ci": "bun run lint && bun run format && bun run compile"
},
"dependencies": {
"@hookform/resolvers": "^5.0.1",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"cheerio": "^1.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.479.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.55.0",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"webext-bridge": "^6.0.1",
"webextension-polyfill": "^0.12.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/chrome": "^0.0.280",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@types/webextension-polyfill": "^0.12.3",
"@wxt-dev/module-react": "^1.1.2",
"autoprefixer": "^10.4.21",
"eslint": "^9.22.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.26.0",
"wxt": "^0.19.29"
}
}