-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.41 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.41 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
{
"name": "ab-download-manager-browser-integration",
"version": "1.3.4",
"displayName": "AB Download Manager Browser Integration",
"author": "AmirHossein Abdolmotallebi",
"description": "Download files with AB Download Manager app",
"repository": "https://github.com/amir1376/ab-download-manager-browser-integration",
"homepage": "https://abdownloadmanager.com",
"private": true,
"license": "Apache-2.0",
"scripts": {
"build": "npm run build:chrome && npm run build:firefox",
"build:chrome": "cross-env EXTENSION_TARGET=chrome vite build",
"build:firefox": "cross-env EXTENSION_TARGET=firefox vite build",
"watch:chrome": "cross-env EXTENSION_TARGET=chrome vite build --watch --mode development --minify false",
"watch:firefox": "cross-env EXTENSION_TARGET=firefox vite build --watch --mode development --minify false",
"dev": "vite",
"pack:src": "git archive HEAD -o ./dist/src.zip",
"pack:firefox": "npm run build:firefox && web-ext build --source-dir ./dist/firefox --artifacts-dir ./dist --filename firefox.zip",
"pack:chrome": "npm run build:chrome && web-ext build --source-dir ./dist/chrome --artifacts-dir ./dist --filename chrome.zip",
"pack": "npm run pack:chrome && npm run pack:firefox && npm run pack:src",
"serve:firefox": "web-ext run --firefox-profile default-release --start-url \"about:debugging#/runtime/this-firefox\" --source-dir ./dist/firefox --devtools",
"serve:chrome": "web-ext run -t chromium --start-url \"https://example.com\" --source-dir ./dist/chrome"
},
"devDependencies": {
"@samrum/vite-plugin-web-extension": "^5.1.1",
"@types/chrome": "^0.0.321",
"@types/lodash": "^4.17.16",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@types/webextension-polyfill": "^0.12.3",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.16",
"cross-env": "^7.0.3",
"daisyui": "^4.4.19",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
"typescript": "^5.0.4",
"vite": "~4.3.9",
"vite-plugin-environment": "^1.1.3",
"web-ext": "^8.10.0"
},
"dependencies": {
"classnames": "^2.5.1",
"hls-parser": "^0.15.0",
"is-network-error": "^1.0.0",
"lodash": "^4.17.21",
"match-url-wildcard": "^0.0.5",
"mobx": "^6.12.0",
"mobx-react-lite": "^4.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webext-bridge": "^6.0.1",
"webextension-polyfill": "^0.12.0"
}
}