-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "wxt-starter",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"bump": "bumpp -y -q",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"submit": "wxt submit",
"submit:latest": "bun exec 'rm -rf .output'; wxt zip && wxt submit --chrome-zip .output/*.zip",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-slot": "^1.1.1",
"@wxt-dev/i18n": "^0.2.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.0",
"@eslint/eslintrc": "^3.2.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@wxt-dev/auto-icons": "^1.0.2",
"@wxt-dev/module-react": "^1.1.3",
"autoprefixer": "^10.4.20",
"bumpp": "^10.0.1",
"eslint": "^9.19.0",
"eslint-plugin-perfectionist": "^4.7.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-tailwindcss": "^3.18.0",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.3",
"wxt": "^0.19.25"
}
}