-
Notifications
You must be signed in to change notification settings - Fork 358
/
package.json
90 lines (90 loc) · 2.62 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "rsshub-radar",
"displayName": "RSSHub Radar",
"version": "2.0.21",
"description": "__MSG_extensionDescription__",
"author": "DIYgod",
"packageManager": "pnpm@9.7.0",
"scripts": {
"dev": "plasmo dev --no-cs-reload",
"build": "plasmo build",
"dev:firefox": "plasmo dev --target=firefox-mv3 --no-cs-reload",
"build:firefox": "plasmo build --target=firefox-mv3",
"build:safari": "plasmo build --target=safari-mv3",
"safari-convert": "xcrun safari-web-extension-converter build/safari-mv3-prod --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": "npm run build:safari && npm run safari-convert && npm run safari-zip",
"package": "plasmo package",
"prepare": "husky install"
},
"dependencies": {
"@iconify-json/mingcute": "^1.2.1",
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.12.0",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-dialog": "1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"async-lock": "^1.4.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"foxact": "^0.2.39",
"he": "1.2.0",
"lodash": "^4.17.21",
"lucide-react": "^0.452.0",
"md5.js": "^1.3.5",
"plasmo": "0.89.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.27.0",
"route-recognizer": "^0.3.4",
"rss-parser": "3.13.0",
"tailwind-merge": "^2.5.3",
"tailwindcss-animate": "^1.0.7",
"tldts": "^6.1.51",
"usehooks-ts": "^3.1.0",
"xss": "1.0.15"
},
"devDependencies": {
"@egoist/tailwindcss-icons": "^1.8.1",
"@ianvs/prettier-plugin-sort-imports": "4.3.1",
"@types/chrome": "^0.0.277",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"autoprefixer": "^10.4.20",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"postcss": "^8.4.47",
"prettier": "3.3.3",
"prettier-package-json": "2.8.0",
"shadcn-ui": "^0.9.2",
"tailwindcss": "^3.4.13",
"typescript": "5.6.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"manifest": {
"default_locale": "en",
"host_permissions": [
"https://*/*"
],
"permissions": [
"tabs",
"offscreen",
"storage",
"alarms"
],
"optional_permissions": [
"notifications"
],
"browser_specific_settings": {
"gecko": {
"id": "i@diygod.me"
}
}
}
}