-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.79 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.79 KB
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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "percy-extension",
"displayName": "Percy Web Extension",
"version": "0.0.2",
"description": "Percy Web Extension",
"author": "BrowserStack Pvt Ltd",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"test": "plasmo test"
},
"dependencies": {
"@ant-design/icons": "^5.2.5",
"@parcel/watcher": "^2.3.0",
"@percy/dom": "^1.26.3",
"@percy/logger": "^1.27.0",
"@percy/sdk-utils": "^1.27.1",
"@plasmohq/messaging": "^0.5.0",
"@plasmohq/storage": "^1.7.2",
"antd": "^5.8.4",
"lightningcss": "^1.21.7",
"plasmo": "0.82.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "^6.15.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.0",
"@percy/cli": "^1.27.1",
"@percy/sdk-utils": "^1.27.0",
"@types/chrome": "0.0.243",
"@types/node": "20.5.0",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"prettier": "3.0.2",
"typescript": "5.1.6"
},
"manifest": {
"host_permissions": [
"https://*/*","http://*/*"
],
"permissions": [
"scripting",
"storage",
"contextMenus",
"activeTab",
"unlimitedStorage"
],
"commands":{
"takeSnapshot":{
"suggested_key":{
"default":"Alt+Q"
},
"description":"Capture Snapshot"
},
"autoCapture":{
"suggested_key":{
"default":"Alt+W"
},
"description":"Start/Stop AutoCapture"
},
"viewSnapshots":{
"suggested_key":{
"default":"Alt+E"
},
"description":"View all snapshots"
},
"viewOptions":{
"suggested_key":{
"default":"Alt+R"
},
"description":"Open Options"
}
}
}
}