-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "wxt-starter",
"description": "manifest.json description",
"private": true,
"version": "2.0.0",
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox --mv2",
"build": "wxt build",
"build:firefox": "wxt build -b firefox --mv2",
"build:chrome": "wxt build -b chrome",
"build:all": "npm run build:chrome && npm run build:firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox --mv2",
"zip:chrome": "wxt zip -b chrome",
"zip:all": "npm run zip:chrome && npm run zip:firefox",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.24",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"wxt": "^0.20.6"
},
"dependencies": {
"@google/genai": "^1.34.0",
"@wxt-dev/module-react": "^1.1.5",
"react": "^19.2.3",
"react-dom": "^19.2.3"
}
}