-
Notifications
You must be signed in to change notification settings - Fork 408
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.54 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.54 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
71
72
73
74
75
76
77
{
"name": "rsshub-radar",
"displayName": "RSSHub Radar",
"version": "2.2.0",
"description": "__MSG_extensionDescription__",
"author": "DIYgod",
"packageManager": "[email protected]",
"scripts": {
"dev": "wxt",
"build": "wxt build",
"dev:firefox": "wxt -b firefox --mv3",
"build:firefox": "wxt build -b firefox --mv3",
"build:safari": "wxt build -b safari --mv3",
"zip": "wxt zip && mkdir -p build && cp .output/rsshub-radar-*-chrome.zip build/chrome-mv3-prod.zip",
"zip:firefox": "wxt zip -b firefox --mv3 && mkdir -p build && cp .output/rsshub-radar-*-firefox.zip build/firefox-mv3-prod.zip",
"safari-convert": "xcrun safari-web-extension-converter .output/safari-mv3 --project-location build --bundle-identifier app.rsshub.RSSHub-Radar --force",
"safari-zip": "zip -r build/safari-mv3-prod.zip \"build/RSSHub Radar\"",
"build:safari:zip": "pnpm build:safari && pnpm safari-convert && pnpm safari-zip",
"package": "pnpm zip && pnpm zip:firefox",
"prepare": "husky install",
"postinstall": "wxt prepare"
},
"dependencies": {
"@iconify-json/mingcute": "^1.2.3",
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-dialog": "1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"async-lock": "^1.4.1",
"blueimp-md5": "^2.19.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"foxact": "^0.2.44",
"he": "1.2.0",
"lodash": "^4.17.21",
"lucide-react": "^0.475.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hot-toast": "^2.5.1",
"react-router": "^7.1.5",
"route-recognizer": "^0.3.4",
"rss-parser": "3.13.0",
"tailwind-merge": "^2.5.3",
"tailwindcss-animate": "^1.0.7",
"tldts": "^6.1.76",
"usehooks-ts": "^3.1.1",
"xss": "1.0.15"
},
"devDependencies": {
"@egoist/tailwindcss-icons": "^1.9.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.1",
"@types/chrome": "^0.0.303",
"@types/node": "22.13.1",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@wxt-dev/module-react": "^1.1.5",
"autoprefixer": "^10.4.20",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"postcss": "^8.4.47",
"prettier": "3.4.2",
"prettier-package-json": "2.8.0",
"shadcn-ui": "^0.9.4",
"tailwindcss": "^3.4.13",
"typescript": "5.7.3",
"wxt": "^0.20.14"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"pnpm": {
"overrides": {
"publish-browser-extension": "3.0.3"
}
}
}