forked from zmrhaljiri/text-spacing-editor
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.65 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
{
"name": "text-spacing-editor",
"displayName": "__MSG_extensionName__",
"version": "2.2.0",
"description": "__MSG_extensionDescription__",
"contributors": [
"Jiří Zmrhal",
"Dmitrii Savinykh"
],
"license": "GPL-3.0-only",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"build:all": " rm -rf build/* && yarn build --target=chrome-mv3 && yarn build --target=firefox-mv3 && yarn build --target=edge-mv3 && yarn build --target=safari-mv3 && chmod +x pack.sh && ./pack.sh",
"package": "plasmo package"
},
"dependencies": {
"@plasmohq/storage": "^1.6.0",
"@uidotdev/usehooks": "^2.4.1",
"plasmo": "0.72.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@plasmohq/prettier-plugin-sort-imports": "3.6.4",
"@types/chrome": "0.0.227",
"@types/node": "18.15.11",
"@types/react": "18.0.32",
"@types/react-dom": "18.0.11",
"prettier": "2.8.7",
"typescript": "5.0.3"
},
"manifest": {
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
},
"gecko_android": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
},
"host_permissions": [
"https://*/*"
],
"permissions": [
"scripting",
"storage"
],
"commands": {
"toggle": {
"suggested_key": {
"windows": "Ctrl+Shift+F",
"mac": "Command+Shift+F",
"chromeos": "Ctrl+Shift+F",
"linux": "Ctrl+Shift+F"
},
"description": "__MSG_toggleCommand__"
}
}
}
}