-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
{
"name": "github-repo-radar",
"displayName": "GitHub Repo Radar",
"version": "1.0.0",
"description": "Enhance your GitHub repository search experience by displaying repository information directly in Google search results, including stars, forks, language, license and last commit.",
"author": "rainbow",
"scripts": {
"dev": "plasmo dev --verbose",
"build": "plasmo build",
"package": "plasmo package"
},
"dependencies": {
"plasmo": "0.84.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-use": "^17.6.0"
},
"devDependencies": {
"@plasmohq/prettier-plugin-sort-imports": "4.0.1",
"@types/chrome": "0.0.258",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.33",
"prettier": "3.2.4",
"tailwindcss": "^3.4.1",
"typescript": "5.3.3"
},
"manifest": {
"name": "GitHub Repo Radar",
"description": "Enhance your GitHub repository search experience by displaying repository information directly in Google search results.",
"version": "1.0.0",
"manifest_version": 3,
"icons": {
"16": "/assets/icon16.png",
"32": "/assets/icon32.png",
"48": "/assets/icon48.png",
"128": "/assets/icon128.png"
},
"host_permissions": [
"https://*.google.com/*"
]
}
}