forked from awef/read.crx-2
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.1 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "read.crx-2",
"version": "0.0.0",
"engines": {
"node": ">=18.0"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.5.2"
}
},
"browserslist": [
"Chrome >= 103",
"Firefox >= 103"
],
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.26.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^12.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"ShortQuery.js": "github:S--Minecraft/ShortQuery.js#1.1.0",
"autoprefixer": "^10.4.14",
"crx3": "^1.1.3",
"eslint": "^9.26.0",
"eslint-config-prettier": "^8.8.0",
"fs-extra": "^11.1.1",
"globals": "^17.4.0",
"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",
"postcss": "^8.5.10",
"prettier": "^2.8.8",
"pug": "^3.0.3",
"require-dir": "^1.2.0",
"rollup": "^3.30.0",
"sass": "^1.62.1",
"sharp": "^0.32.6",
"typescript": "^4.9.5",
"typescript-eslint": "7.18.0",
"web-ext": "^9.4.0",
"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/"
}
}