darkreader 4.9.101 → 4.9.104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/darkreader.js +167 -58
- package/darkreader.mjs +8082 -0
- package/package.json +16 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "darkreader",
|
|
3
|
-
"version": "4.9.
|
|
3
|
+
"version": "4.9.104",
|
|
4
4
|
"description": "Dark mode for every website",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"api": "node --max-old-space-size=3072 tasks/cli.js build --api",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"debug:watch:plus": "node --max-old-space-size=3072 tasks/cli.js build --debug --watch --plus --chrome",
|
|
16
16
|
"dependencies:upgrade": "node tasks/dependencies.js",
|
|
17
17
|
"lint": "eslint -- src/**/*.ts src/**/*.tsx tasks/**/*.js tests/[!coverage]**/*.js tests/**/*.ts eslint.config.js index.d.ts",
|
|
18
|
-
"lint:bundle": "(node ./tasks/check-exists.js ./build/debug/chrome || node tasks/build.js --debug --api --chrome) && eslint -- 'build/debug/chrome/**/*.js' 'darkreader.js'",
|
|
18
|
+
"lint:bundle": "(node ./tasks/check-exists.js ./build/debug/chrome || node tasks/build.js --debug --api --chrome) && eslint -- 'build/debug/chrome/**/*.js' 'darkreader.js' 'darkreader.mjs'",
|
|
19
19
|
"plus-link": "cd src && ln -s ../../darkreader-plus plus",
|
|
20
20
|
"prepublishOnly": "npm test && npm run api",
|
|
21
21
|
"release": "npm test && npm run lint && node tasks/cli.js build --release",
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"deno:bootstrap": "deno run --allow-read=./ --allow-sys=uid --allow-write=deno.json tasks/deno.js"
|
|
37
37
|
},
|
|
38
38
|
"main": "darkreader.js",
|
|
39
|
+
"module": "darkreader.mjs",
|
|
39
40
|
"type": "module",
|
|
40
41
|
"repository": {
|
|
41
42
|
"type": "git",
|
|
@@ -64,27 +65,27 @@
|
|
|
64
65
|
"malevic": "0.20.2"
|
|
65
66
|
},
|
|
66
67
|
"devDependencies": {
|
|
67
|
-
"@eslint/compat": "1.2.
|
|
68
|
+
"@eslint/compat": "1.2.6",
|
|
68
69
|
"@eslint/eslintrc": "3.2.0",
|
|
69
|
-
"@eslint/js": "9.
|
|
70
|
+
"@eslint/js": "9.20.0",
|
|
70
71
|
"@rollup/plugin-node-resolve": "16.0.0",
|
|
71
72
|
"@rollup/plugin-replace": "6.0.2",
|
|
72
73
|
"@rollup/plugin-typescript": "12.1.2",
|
|
73
|
-
"@stylistic/eslint-plugin": "
|
|
74
|
-
"@types/chrome": "0.0.
|
|
74
|
+
"@stylistic/eslint-plugin": "3.1.0",
|
|
75
|
+
"@types/chrome": "0.0.304",
|
|
75
76
|
"@types/eslint": "9.6.1",
|
|
76
77
|
"@types/jasmine": "5.1.5",
|
|
77
78
|
"@types/jest": "29.5.14",
|
|
78
79
|
"@types/karma": "6.3.9",
|
|
79
80
|
"@types/karma-coverage": "2.0.3",
|
|
80
|
-
"@types/node": "22.
|
|
81
|
+
"@types/node": "22.13.2",
|
|
81
82
|
"@types/ws": "8.5.14",
|
|
82
83
|
"chokidar": "4.0.3",
|
|
83
84
|
"eslint-plugin-compat": "6.0.2",
|
|
84
85
|
"eslint-plugin-import": "2.31.0",
|
|
85
|
-
"globals": "15.
|
|
86
|
-
"globby": "14.0
|
|
87
|
-
"jasmine-core": "5.
|
|
86
|
+
"globals": "15.15.0",
|
|
87
|
+
"globby": "14.1.0",
|
|
88
|
+
"jasmine-core": "5.6.0",
|
|
88
89
|
"jest": "29.7.0",
|
|
89
90
|
"jest-extended": "4.0.2",
|
|
90
91
|
"karma": "6.4.4",
|
|
@@ -96,15 +97,15 @@
|
|
|
96
97
|
"karma-safari-launcher": "1.0.0",
|
|
97
98
|
"karma-spec-reporter": "0.0.36",
|
|
98
99
|
"less": "4.2.2",
|
|
99
|
-
"prettier": "3.
|
|
100
|
-
"puppeteer-core": "24.
|
|
101
|
-
"rollup": "4.
|
|
100
|
+
"prettier": "3.5.1",
|
|
101
|
+
"puppeteer-core": "24.2.0",
|
|
102
|
+
"rollup": "4.34.6",
|
|
102
103
|
"rollup-plugin-istanbul": "5.0.0",
|
|
103
104
|
"ts-jest": "29.2.5",
|
|
104
105
|
"tslib": "2.8.1",
|
|
105
106
|
"typescript": "5.7.3",
|
|
106
|
-
"typescript-eslint": "8.
|
|
107
|
-
"web-ext": "8.
|
|
107
|
+
"typescript-eslint": "8.24.0",
|
|
108
|
+
"web-ext": "8.4.0",
|
|
108
109
|
"ws": "8.18.0",
|
|
109
110
|
"yazl": "3.3.1"
|
|
110
111
|
},
|