-
-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
95 lines (95 loc) · 3.66 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "web-archives",
"version": "7.0.0",
"author": "Armin Sebastian",
"license": "GPL-3.0-only",
"homepage": "https://github.com/dessant/web-archives",
"repository": {
"url": "https://github.com/dessant/web-archives.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/dessant/web-archives/issues"
},
"scripts": {
"_build": "cross-env NODE_ENV=development gulp build",
"build:chrome": "cross-env TARGET_ENV=chrome npm run _build",
"build:edge": "cross-env TARGET_ENV=edge npm run _build",
"build:firefox": "cross-env TARGET_ENV=firefox npm run _build",
"build:opera": "cross-env TARGET_ENV=opera npm run _build",
"build:safari": "cross-env TARGET_ENV=safari npm run _build",
"build:samsung": "cross-env TARGET_ENV=samsung npm run _build",
"_build:prod": "cross-env NODE_ENV=production gulp build",
"build:prod:chrome": "cross-env TARGET_ENV=chrome npm run _build:prod",
"build:prod:edge": "cross-env TARGET_ENV=edge npm run _build:prod",
"build:prod:firefox": "cross-env TARGET_ENV=firefox npm run _build:prod",
"build:prod:opera": "cross-env TARGET_ENV=opera npm run _build:prod",
"build:prod:safari": "cross-env TARGET_ENV=safari npm run _build:prod",
"build:prod:samsung": "cross-env TARGET_ENV=samsung npm run _build:prod",
"_build:prod:zip": "npm run _build:prod && gulp zip",
"build:prod:zip:chrome": "cross-env TARGET_ENV=chrome npm run _build:prod:zip",
"build:prod:zip:edge": "cross-env TARGET_ENV=edge npm run _build:prod:zip",
"build:prod:zip:firefox": "cross-env TARGET_ENV=firefox npm run _build:prod:zip",
"build:prod:zip:opera": "cross-env TARGET_ENV=opera npm run _build:prod:zip",
"build:prod:zip:safari": "cross-env TARGET_ENV=safari npm run _build:prod:zip",
"build:prod:zip:samsung": "cross-env TARGET_ENV=samsung npm run _build:prod:zip",
"start:chrome": "web-ext run -s dist/chrome -t chromium",
"start:firefox": "web-ext run -s dist/firefox -t firefox-desktop",
"start:android": "web-ext run -s dist/firefox -t firefox-android",
"inspect": "cross-env NODE_ENV=production gulp inspect",
"update": "ncu --dep prod,dev,peer --filterVersion '^*' --upgrade",
"release": "commit-and-tag-version",
"push": "git push --follow-tags origin main"
},
"dependencies": {
"@fontsource/roboto": "^5.0.13",
"buffer": "^6.0.3",
"core-js": "^3.37.1",
"idb-keyval": "^6.2.1",
"lodash-es": "^4.17.21",
"p-queue": "^8.0.1",
"psl": "^1.9.0",
"uuid": "^10.0.0",
"vue": "3.4.23",
"vue-resize": "^2.0.0-alpha.1",
"vuedraggable": "^4.1.0",
"vuetify": "3.3.0",
"vueton": "^0.4.2",
"webextension-polyfill": "^0.12.0",
"wesa": "^0.6.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"babel-loader": "^9.1.3",
"commit-and-tag-version": "^12.4.1",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"cssnano": "^7.0.3",
"fs-extra": "^11.2.0",
"gulp": "^5.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "7.1.0",
"gulp-jsonmin": "^1.2.0",
"gulp-merge-json": "^2.2.1",
"gulp-postcss": "^10.0.0",
"mini-css-extract-plugin": "^2.9.0",
"npm-check-updates": "^16.14.20",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^9.5.14",
"prettier": "^3.3.2",
"recursive-readdir": "^2.2.3",
"sass": "^1.77.6",
"sass-loader": "^14.2.1",
"sharp": "^0.33.4",
"vue-loader": "^17.4.2",
"web-ext": "^8.1.0",
"webpack": "^5.92.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-plugin-vuetify": "^3.0.3"
},
"private": true
}