-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
37 lines (37 loc) · 1.21 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
{
"name": "gif-scrubber",
"version": "4.1.3",
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.4.0",
"@parcel/config-webextension": "^2.9.3",
"adm-zip": "^0.5.10",
"buffer": "^6.0.3",
"file-saver": "^2.0.5",
"immer": "^10.0.2",
"jquery": "^3.7.0",
"jszip": "^3.10.1",
"parcel": "^2.9.3",
"process": "^0.11.10",
"progressbar.js": "^1.1.0",
"rimraf": "^5.0.1"
},
"scripts": {
"archive": "node ./lib/archive.mjs",
"build": "rimraf ./dist && npm run build:chrome && npm run build:firefox",
"build:manifest": "parcel build manifest.json",
"build:chrome": "npm run parcel:chrome && node lib/archive.mjs chrome",
"build:firefox": "npm run parcel:firefox && node lib/archive.mjs firefox",
"parcel:chrome": "parcel build manifest.json --target=chrome --no-source-maps",
"parcel:firefox": "parcel build manifest.json --target=firefox --no-source-maps",
"start:chrome": "parcel watch manifest.json --target=chrome --host localhost",
"start:firefox": "parcel watch manifest.json --target=firefox --no-source-maps"
},
"targets": {
"chrome": {
"distDir": "./dist/chrome"
},
"firefox": {
"distDir": "./dist/firefox"
}
}
}