-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "tidbit",
"displayName": "TidBit",
"version": "0.1.0",
"description": "TidBit, the browser extension that makes finding answers and completing tasks a breeze",
"author": "adipoluri",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.5",
"openai": "^3.1.0",
"plasmo": "0.63.0",
"react": "18.2.0",
"react-awesome-button": "^7.0.5",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"typeit": "^8.7.1",
"typeit-react": "^2.6.4"
},
"devDependencies": {
"@plasmohq/prettier-plugin-sort-imports": "3.6.0",
"@types/chrome": "0.0.202",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"prettier": "2.7.1",
"typescript": "4.9.3"
},
"manifest": {
"key": "$CRX_PUBLIC_KEY",
"host_permissions": [
"https://*/*"
],
"permissions": [
"identity",
"storage"
],
"oauth2": {
"client_id": "$PLASMO_PUBLIC_FIREBASE_CLIENT_ID",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"
]
}
}
}