forked from TheKonka/instagram-download-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.69 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": "instagram-download-browser-extension",
"version": "2.4.4",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build:chrome": "pnpm exec tsc --noEmit && node esbuild.config.mjs chrome",
"build:ff": "pnpm exec tsc --noEmit && node esbuild.config.mjs firefox",
"watch:chrome": "pnpm exec tsc --noEmit && node esbuild.config.mjs chrome --watch",
"watch:ff": "pnpm exec tsc --noEmit && node esbuild.config.mjs firefox --watch",
"android": "node ./node_modules/web-ext/bin/web-ext.js run -t firefox-android --android-device=45lrfakru8a6kzyh --firefox-apk org.mozilla.fenix --source-dir ./dist/firefox",
"test": "vitest run",
"lint": "npx eslint --fix"
},
"keywords": [
"Instagram",
"download",
"browser",
"extension"
],
"author": {
"name": "Konka",
"email": "1094918@gmail.com"
},
"homepage": "https://github.com/fajarmf10/instagram-download-browser-extension",
"bugs": {
"url": "https://github.com/fajarmf10/instagram-download-browser-extension/issues",
"email": "1094918@gmail.com"
},
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@zip.js/zip.js": "^2.8.26",
"dayjs": "^1.11.20",
"preact": "^10.29.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/firefox-webext-browser": "^143.0.0",
"chrome-types": "^0.1.425",
"esbuild": "^0.28.0",
"esbuild-sass-plugin": "^3.7.0",
"eslint": "^10.2.0",
"globals": "^17.4.0",
"jsdom": "^29.1.0",
"sass": "^1.99.0",
"sass-embedded": "^1.99.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.5",
"web-ext": "^10.1.0"
},
"engines": {
"node": ">=18"
}
}