forked from DIYgod/RSSHub-Radar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.59 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
{
"name": "rsshub-radar",
"displayName": "RSSHub Radar",
"version": "2.0.19",
"description": "__MSG_extensionDescription__",
"author": "DIYgod",
"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.1.16",
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.9.3",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"async-lock": "^1.4.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"foxact": "^0.2.31",
"he": "1.2.0",
"lodash": "^4.17.21",
"lucide-react": "^0.334.0",
"md5.js": "^1.3.5",
"plasmo": "0.84.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.22.1",
"route-recognizer": "^0.3.4",
"rss-parser": "3.13.0",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"tldts": "^6.1.11",
"usehooks-ts": "^2.14.0",
"xss": "1.0.14"
},
"devDependencies": {
"@egoist/tailwindcss-icons": "^1.7.4",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@types/chrome": "^0.0.260",
"@types/node": "20.11.19",
"@types/react": "18.2.56",
"@types/react-dom": "18.2.19",
"autoprefixer": "^10.4.17",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"postcss": "^8.4.35",
"prettier": "3.2.5",
"prettier-package-json": "2.8.0",
"shadcn-ui": "^0.8.0",
"tailwindcss": "^3.4.1",
"typescript": "5.3.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": "[email protected]"
}
}
}
}