-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.37 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": "github-custom-notifier",
"description": "Customize which GitHub Event to be notified",
"version": "0.0.5",
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox --mv3",
"build": "wxt build",
"build:edge": "wxt build -b edge",
"build:firefox": "wxt build -b firefox --mv3",
"zip": "wxt zip",
"zip:edge": "wxt zip -b edge",
"zip:firefox": "wxt zip -b firefox --mv3",
"zip:all": "pnpm run zip && pnpm run zip:edge && pnpm run zip:firefox",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"lodash": "^4.17.21",
"octokit": "^3.1.2",
"pino": "^8.18.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@octokit/types": "^12.4.0",
"@types/lodash": "^4.17.0",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"wxt": "^0.19.10"
},
"pnpm": {
"overrides": {
"vite@>=5.1.0 <=5.1.6": ">=5.1.7",
"tar@<6.2.1": ">=6.2.1",
"ws@>=8.0.0 <8.17.1": ">=8.17.1",
"braces@<3.0.3": ">=3.0.3"
}
}
}