-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.57 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
{
"name": "gistrr-webextension",
"displayName": "Gistrr webextension",
"version": "0.0.1",
"description": "Your second brain",
"author": "Ajitesh13",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.9.3",
"axios": "^1.6.8",
"chakra-react-select": "^4.7.6",
"firebase": "^10.8.1",
"framer-motion": "^11.0.8",
"moment": "^2.30.1",
"plasmo": "0.85.2",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@types/chrome": "0.0.258",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"prettier": "3.2.4",
"sass": "^1.72.0",
"typescript": "5.3.3"
},
"manifest": {
"host_permissions": [
"https://*/*",
"http://*/*"
],
"permissions": [
"tabs",
"storage",
"activeTab",
"scripting",
"identity",
"sidePanel"
],
"oauth2": {
"client_id": "$PLASMO_PUBLIC_FIREBASE_CLIENT_ID",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"
]
},
"key": "$CRX_PUBLIC_KEY",
"action": {
"default_title": "Click to open panel"
},
"side_panel": {
"default_path": "sidepanel.html"
}
}
}