-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
53 lines (53 loc) · 1.51 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
{
"name": "instagram-download-browser-extension",
"version": "2.2.5",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build:chrome": "tsc --noEmit && node esbuild.config.mjs chrome",
"build:ff": "tsc --noEmit && node esbuild.config.mjs firefox",
"android": "cd dist/firefox && node ../../node_modules/web-ext/bin/web-ext.js run -t firefox-android --android-device=45lrfakru8a6kzyh --firefox-apk org.mozilla.fenix",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint --fix"
},
"keywords": [
"instagram",
"download",
"browser",
"extension"
],
"author": {
"name": "Konka",
"email": "[email protected]"
},
"homepage": "https://github.com/TheKonka/instagram-download-browser-extension",
"bugs": {
"url": "https://github.com/TheKonka/instagram-download-browser-extension/issues",
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"dayjs": "^1.11.13",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/firefox-webext-browser": "^120.0.4",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"chrome-types": "^0.1.327",
"esbuild": "^0.21.5",
"esbuild-sass-plugin": "^3.3.1",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"sass": "^1.83.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"web-ext": "^8.3.0"
},
"engines": {
"node": ">=18"
}
}