forked from awef/read.crx-2
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 1.86 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
{
"name": "read.crx-2",
"version": "0.0.0",
"engines": {
"node": ">=18.0"
},
"browserslist": [
"Chrome >= 103",
"Firefox >= 103"
],
"devDependencies": {
"@rollup/plugin-replace": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"ShortQuery.js": "github:S--Minecraft/ShortQuery.js#1.1.0",
"autoprefixer": "^10.4.14",
"crx3": "^1.1.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"fs-extra": "^11.1.1",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-filter": "^7.0.0",
"gulp-notify": "^4.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-pug": "^5.0.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.4",
"gulp-sass": "^5.1.0",
"gulp-sort": "^2.0.0",
"merge2": "^1.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"pug": "^3.0.3",
"require-dir": "^1.2.0",
"rollup": "^3.29.5",
"rollup-plugin-typescript2": "^0.34.1",
"sass": "^1.62.1",
"sharp": "^0.32.6",
"typescript": "^4.9.5",
"web-ext": "^7.6.2",
"web-ext-types": "^3.2.1",
"webextension-polyfill": "^0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/readcrx-2/read.crx-2.git"
},
"license": "MIT",
"scripts": {
"build": "gulp build",
"build:chrome": "gulp build:chrome",
"build:firefox": "gulp build:firefox",
"build:all": "gulp build:all",
"clean": "gulp clean",
"watch": "gulp watch",
"watch:chrome": "gulp watch:chrome",
"watch:firefox": "gulp watch:firefox",
"pack": "gulp pack",
"pack:chrome": "gulp pack:chrome",
"pack:firefox": "gulp pack:firefox",
"pack:all": "gulp pack:all",
"lint": "run-s -c -l lint:*",
"lint:eslint": "eslint --cache --fix src/",
"lint:prettier": "prettier --write src/ gulp/"
}
}