-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
77 lines (77 loc) · 2.07 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "skip-silence",
"displayName": "Skip silence",
"version": "5.2.0",
"description": "Skip silent parts in videos and audio files.",
"author": "vantezzen",
"packageManager": "pnpm@6.19.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vantezzen/skip-silence.git"
},
"scripts": {
"dev": "plasmo dev --target=chrome-mv2",
"dev:mv3": "plasmo dev --target=chrome-mv3",
"dev:firefox": "plasmo dev --target=firefox-mv2",
"build": "plasmo build --target=chrome-mv2 --zip",
"build:mv3": "plasmo build --target=chrome-mv3 --zip",
"build:firefox": "plasmo build --target=firefox-mv2 --zip"
},
"dependencies": {
"@parcel/core": "^2.6.1",
"@types/debug": "^4.1.7",
"@types/webextension-polyfill": "^0.9.0",
"@vantezzen/plasmo-state": "^2.0.4",
"debug": "^4.3.4",
"fontsource-poppins": "^4.0.0",
"intro.js": "^5.1.0",
"intro.js-react": "^0.6.0",
"plasmo": "0.52.1-alpha.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-feather": "^2.0.10",
"react-transition-group": "^4.4.2",
"webextension-polyfill": "^0.9.0"
},
"devDependencies": {
"@parcel/transformer-sass": "2.6.1",
"@trivago/prettier-plugin-sort-imports": "3.2.0",
"@types/chrome": "0.0.191",
"@types/node": "18.0.1",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"prettier": "2.7.1",
"typescript": "4.7.4"
},
"manifest": {
"host_permissions": [
"<all_urls>"
],
"commands": {
"toggle-enable": {
"suggested_key": {
"default": "Ctrl+Shift+S"
},
"description": "Enable/disable Skip Silence for the current tab"
},
"toggle-command-bar": {
"suggested_key": {
"default": "Alt+Shift+S"
},
"description": "Show/hide the command bar"
}
},
"permissions": [
"activeTab",
"storage",
"tabCapture"
],
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "skip-silence@vantezzen.io"
}
}
}
}