forked from darkreader/darkreader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.49 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.49 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "LeanDark+",
"version": "1.0.0",
"description": "Fast Dark mode for every website",
"scripts": {
"api": "node --max-old-space-size=3072 tasks/cli.js build --api",
"build": "node --max-old-space-size=3072 tasks/cli.js build --release",
"build:all": "node --max-old-space-size=3072 tasks/cli.js build --debug --release --api",
"build:firefox": "node --max-old-space-size=3072 tasks/cli.js build --release --firefox",
"code-style": "npm run lint",
"config-cleanup": "node --max-http-header-size=131072 tasks/ping.js dark-sites detector-hints dynamic-theme-fixes inversion-fixes",
"debug": "node --max-old-space-size=3072 tasks/cli.js build --debug",
"debug:watch": "node --max-old-space-size=3072 tasks/cli.js build --debug --watch --chrome --firefox",
"debug:watch:mv3": "node --max-old-space-size=3072 tasks/cli.js build --debug --watch --chrome-mv3",
"debug:watch:firefox": "node --max-old-space-size=3072 tasks/cli.js build --debug --watch --firefox",
"dependencies:upgrade": "node tasks/dependencies.js",
"lint": "eslint -- src/**/*.ts src/**/*.tsx tasks/**/*.js eslint.config.js index.d.ts",
"fix": "npx eslint --fix -- src/**/*.ts src/**/*.tsx tasks/**/*.js eslint.config.js index.d.ts",
"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'",
"release": "npm run lint && node tasks/cli.js build --release",
"translate-en-message": "node ./tasks/translate.js --message",
"translate-new-en-messages": "node ./tasks/translate.js --new-messages"
},
"main": "darkreader.js",
"module": "darkreader.mjs",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/moodynooby/modern-darkreader.git"
},
"author": "Manas",
"license": "MIT",
"keywords": [
"dark-theme",
"dark-mode",
"night-mode",
"darkmode",
"nightmode",
"accessibility",
"eye-care"
],
"dependencies": {
"malevic": "0.20.2",
"web-ext": "^9.2.0"
},
"devDependencies": {
"@eslint/compat": "2.0.2",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "10.0.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-replace": "6.0.3",
"@rollup/plugin-typescript": "12.3.0",
"@stylistic/eslint-plugin": "5.8.0",
"@types/chrome": "0.1.36",
"@types/eslint": "9.6.1",
"@types/jasmine": "6.0.0",
"@types/jest": "30.0.0",
"@types/karma": "6.3.9",
"@types/karma-coverage": "2.0.3",
"@types/node": "25.2.2",
"@types/ws": "8.18.1",
"chokidar": "5.0.0",
"eslint-plugin-compat": "6.1.0",
"eslint-plugin-import": "2.32.0",
"globals": "17.3.0",
"globby": "16.1.0",
"jasmine-core": "6.0.1",
"jest": "30.2.0",
"jest-extended": "7.0.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-firefox-launcher": "2.1.3",
"karma-jasmine": "5.1.0",
"karma-rollup-preprocessor": "7.0.8",
"karma-safari-launcher": "1.0.0",
"karma-spec-reporter": "0.0.36",
"less": "4.5.1",
"prettier": "3.8.1",
"puppeteer-core": "24.37.2",
"rollup": "4.57.1",
"rollup-plugin-istanbul": "5.0.0",
"ts-jest": "29.4.6",
"tslib": "2.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.55.0",
"ws": "8.19.0",
"yazl": "3.3.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.57.1",
"@rollup/rollup-win32-x64-msvc": "4.57.1"
}
}