-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
93 lines (93 loc) · 2.19 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
91
92
93
{
"name": "gopeed-browser-extension",
"displayName": "Gopeed",
"version": "1.0.2",
"description": "Gopeed browser extension",
"homepage": "https://gopeed.com",
"author": "Levi",
"scripts": {
"dev": "plasmo dev",
"dev:firefox": "plasmo dev --target=firefox-mv2",
"build": "plasmo build --zip",
"build:firefox": "plasmo build --target=firefox-mv2 --zip"
},
"dependencies": {
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@gopeed/rest": "^1.3.7",
"@mui/icons-material": "^5.15.10",
"@mui/lab": "5.0.0-alpha.165",
"@mui/material": "5.15.10",
"@mui/x-date-pickers": "^6.19.4",
"@plasmohq/messaging": "^0.6.1",
"@plasmohq/storage": "^1.9.0",
"content-disposition": "^0.5.4",
"plasmo": "0.89.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-file-icon": "^1.4.0",
"react-hook-form": "^7.50.1",
"react-hook-form-mui": "7.0.0-beta.0"
},
"devDependencies": {
"@babel/core": "7.23.3",
"@gopeed/types": "^1.3.7",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@types/chrome": "0.0.251",
"@types/content-disposition": "^0.5.8",
"@types/node": "20.9.0",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.15",
"prettier": "3.0.3",
"typescript": "5.2.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core",
"esbuild",
"lmdb",
"msgpackr-extract",
"sharp"
]
},
"manifest": {
"host_permissions": [
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"assets/icon.png"
]
}
],
"permissions": [
"downloads",
"cookies",
"nativeMessaging"
],
"overrides": {
"firefox": {
"permissions": [
"downloads",
"cookies",
"webRequest",
"webRequestBlocking",
"*://*/*",
"nativeMessaging"
],
"browser_specific_settings": {
"gecko": {
"id": "{c5d69a8f-2ed0-46a7-afa4-b3a00dc58088}"
}
}
}
}
}
}