darkreader 4.9.96 → 4.9.100
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/LICENSE +1 -1
- package/README.md +11 -7
- package/darkreader.js +5910 -5517
- package/package.json +35 -28
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "darkreader",
|
|
3
|
-
"version": "4.9.
|
|
3
|
+
"version": "4.9.100",
|
|
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",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"debug:watch:mv3": "node --max-old-space-size=3072 tasks/cli.js build --debug --watch --chrome-mv3",
|
|
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
|
-
"lint": "eslint --
|
|
17
|
+
"lint": "eslint -- src/**/*.ts src/**/*.tsx tasks/**/*.js tests/[!coverage]**/*.js tests/**/*.ts eslint.config.js index.d.ts",
|
|
18
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'",
|
|
19
19
|
"plus-link": "cd src && ln -s ../../darkreader-plus plus",
|
|
20
20
|
"prepublishOnly": "npm test && npm run api",
|
|
@@ -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
|
+
"type": "module",
|
|
39
40
|
"repository": {
|
|
40
41
|
"type": "git",
|
|
41
42
|
"url": "https://github.com/darkreader/darkreader.git"
|
|
@@ -63,26 +64,27 @@
|
|
|
63
64
|
"malevic": "0.20.2"
|
|
64
65
|
},
|
|
65
66
|
"devDependencies": {
|
|
66
|
-
"@
|
|
67
|
-
"@
|
|
68
|
-
"@
|
|
69
|
-
"@
|
|
70
|
-
"@
|
|
71
|
-
"@
|
|
72
|
-
"@
|
|
73
|
-
"@types/
|
|
67
|
+
"@eslint/compat": "1.2.5",
|
|
68
|
+
"@eslint/eslintrc": "3.2.0",
|
|
69
|
+
"@eslint/js": "9.18.0",
|
|
70
|
+
"@rollup/plugin-node-resolve": "16.0.0",
|
|
71
|
+
"@rollup/plugin-replace": "6.0.2",
|
|
72
|
+
"@rollup/plugin-typescript": "12.1.2",
|
|
73
|
+
"@stylistic/eslint-plugin": "2.13.0",
|
|
74
|
+
"@types/chrome": "0.0.299",
|
|
75
|
+
"@types/eslint": "9.6.1",
|
|
76
|
+
"@types/jasmine": "5.1.5",
|
|
77
|
+
"@types/jest": "29.5.14",
|
|
78
|
+
"@types/karma": "6.3.9",
|
|
74
79
|
"@types/karma-coverage": "2.0.3",
|
|
75
|
-
"@types/node": "22.
|
|
76
|
-
"@types/ws": "8.5.
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"eslint-plugin-compat": "5.0.0",
|
|
82
|
-
"eslint-plugin-import": "2.30.0",
|
|
83
|
-
"eslint-plugin-local": "4.2.2",
|
|
80
|
+
"@types/node": "22.10.9",
|
|
81
|
+
"@types/ws": "8.5.14",
|
|
82
|
+
"chokidar": "4.0.3",
|
|
83
|
+
"eslint-plugin-compat": "6.0.2",
|
|
84
|
+
"eslint-plugin-import": "2.31.0",
|
|
85
|
+
"globals": "15.14.0",
|
|
84
86
|
"globby": "14.0.2",
|
|
85
|
-
"jasmine-core": "5.
|
|
87
|
+
"jasmine-core": "5.5.0",
|
|
86
88
|
"jest": "29.7.0",
|
|
87
89
|
"jest-extended": "4.0.2",
|
|
88
90
|
"karma": "6.4.4",
|
|
@@ -93,16 +95,21 @@
|
|
|
93
95
|
"karma-rollup-preprocessor": "7.0.8",
|
|
94
96
|
"karma-safari-launcher": "1.0.0",
|
|
95
97
|
"karma-spec-reporter": "0.0.36",
|
|
96
|
-
"less": "4.2.
|
|
97
|
-
"prettier": "3.
|
|
98
|
-
"puppeteer-core": "
|
|
99
|
-
"rollup": "4.
|
|
98
|
+
"less": "4.2.2",
|
|
99
|
+
"prettier": "3.4.2",
|
|
100
|
+
"puppeteer-core": "24.1.1",
|
|
101
|
+
"rollup": "4.31.0",
|
|
100
102
|
"rollup-plugin-istanbul": "5.0.0",
|
|
101
103
|
"ts-jest": "29.2.5",
|
|
102
|
-
"tslib": "2.
|
|
103
|
-
"typescript": "5.
|
|
104
|
-
"
|
|
104
|
+
"tslib": "2.8.1",
|
|
105
|
+
"typescript": "5.7.3",
|
|
106
|
+
"typescript-eslint": "8.21.0",
|
|
107
|
+
"web-ext": "8.3.0",
|
|
105
108
|
"ws": "8.18.0",
|
|
106
|
-
"yazl": "
|
|
109
|
+
"yazl": "3.3.1"
|
|
110
|
+
},
|
|
111
|
+
"optionalDependencies": {
|
|
112
|
+
"@rollup/rollup-linux-x64-gnu": "4.29.1",
|
|
113
|
+
"@rollup/rollup-win32-x64-msvc": "4.29.1"
|
|
107
114
|
}
|
|
108
115
|
}
|