-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.46 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
{
"name": "tree-tab-sidebar",
"displayName": "Tree Tab Sidebar",
"version": "1.0.0",
"description": "Let's keep tabs tidy with tree-style sidebar!!",
"author": "canalun",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"test": "plasmo test",
"format": "prettier --write ."
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.1",
"@mui/material": "^5.14.2",
"@plasmohq/messaging": "^0.5.0",
"eslint": "^8.46.0",
"plasmo": "0.82.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.0",
"@types/chrome": "0.0.242",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-react": "^7.33.0",
"prettier": "^3.0.0",
"typescript": "5.1.6"
},
"manifest": {
"permissions": [
"sidePanel",
"tabs",
"favicon"
],
"web_accessible_resources": [
{
"resources": [
"_favicon/*"
],
"matches": [
"<all_urls>"
],
"extension_ids": [
"*"
]
}
],
"side_panel": {
"default_path": "sidepanel.html"
},
"action": {
"default_title": "Click me to open panel"
}
}
}