-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1018 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1018 Bytes
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
{
"name": "request-recorder",
"displayName": "Request Recorder",
"version": "0.1.1",
"description": "A Chrome extension for recording background HTTP requests",
"author": "x0c",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@plasmohq/storage": "^1.15.0",
"plasmo": "0.90.5",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@plasmohq/prettier-plugin-sort-imports": "4.0.1",
"@types/chrome": "0.0.268",
"@types/node": "20.14.10",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.19",
"postcss": "8.4.39",
"prettier": "3.3.3",
"tailwindcss": "3.4.6",
"typescript": "5.5.3"
},
"manifest": {
"host_permissions": [
"<all_urls>"
],
"permissions": [
"webRequest",
"storage",
"unlimitedStorage",
"alarms",
"tabs",
"activeTab"
]
}
}