forked from darkreader/darkreader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 4.5 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
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
95
96
97
98
99
100
101
102
{
"name": "darkreader",
"version": "4.9.87",
"description": "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",
"code-style": "npm run lint",
"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",
"dependencies:upgrade": "node tasks/dependencies.js",
"lint": "eslint --ignore-pattern '!.eslint-plugin-local.js' -- 'src/**/*.ts' 'src/**/*.tsx' 'tasks/**/*.js' 'tests/[!coverage]**/*.js' 'tests/**/*.ts' '.eslintrc.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'",
"prepublishOnly": "npm test && npm run api",
"release": "npm test && npm run lint && node tasks/cli.js build --release",
"test": "npm run test:unit",
"test:all": "npm run test:unit; npm run test:browser; npm run test:inject",
"test:browser": "npm run test:chrome && npm run test:chrome-mv3 && npm run test:firefox",
"test:chrome": "node tasks/cli.js build --debug --test --chrome-mv2 && jest --config=tests/browser/jest.config.mjs --runInBand",
"test:chrome-mv3": "node tasks/cli.js build --debug --test --chrome-mv3 && jest --config=tests/browser/jest.config.chrome-mv3.mjs --runInBand",
"test:ci": "npm run test:unit",
"test:coverage": "jest --config=tests/unit/jest.config.mjs --coverage",
"test:firefox": "node tasks/cli.js build --debug --test --firefox-mv2 && jest --config=tests/browser/jest.config.firefox.mjs --runInBand",
"test:inject": "node --max-old-space-size=3072 node_modules/.bin/karma start ./tests/inject/karma.conf.cjs",
"test:inject:debug": "node --max-old-space-size=3072 node_modules/.bin/karma start ./tests/inject/karma.conf.cjs --debug",
"test:unit": "jest --config=tests/unit/jest.config.mjs",
"test:unit:debug": "node --inspect-brk ./node_modules/jest/bin/jest --config=tests/unit/jest.config.mjs --runInBand --no-cache --watch",
"translate-en-message": "node ./tasks/translate.js --message",
"translate-new-en-messages": "node ./tasks/translate.js --new-messages",
"deno:bootstrap": "deno run --allow-read=./ --allow-sys=uid --allow-write=deno.json tasks/deno.js"
},
"main": "darkreader.js",
"repository": {
"type": "git",
"url": "https://github.com/darkreader/darkreader.git"
},
"author": "Alexander Shutau <darkreaderapp@gmail.com> (https://darkreader.org/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/darkreader/darkreader/issues"
},
"keywords": [
"dark-theme",
"dark-mode",
"night-mode",
"darkmode",
"nightmode",
"accessibility",
"eye-care"
],
"homepage": "https://darkreader.org/",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/darkreader/donate"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "5.0.7",
"@rollup/plugin-typescript": "11.1.6",
"@types/chrome": "0.0.268",
"@types/eslint": "8.56.10",
"@types/jasmine": "5.1.4",
"@types/jest": "29.5.12",
"@types/karma": "6.3.8",
"@types/karma-coverage": "2.0.3",
"@types/node": "20.14.9",
"@types/ws": "8.5.10",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1",
"chokidar": "3.6.0",
"eslint": "8.57.0",
"eslint-plugin-compat": "5.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-local": "4.2.2",
"globby": "14.0.1",
"jasmine-core": "5.1.2",
"jest": "29.7.0",
"jest-extended": "4.0.2",
"karma": "6.4.3",
"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.2.0",
"malevic": "0.20.1",
"prettier": "3.3.2",
"puppeteer-core": "22.12.1",
"rollup": "4.18.0",
"rollup-plugin-istanbul": "5.0.0",
"ts-jest": "29.1.5",
"tslib": "2.6.3",
"typescript": "5.5.2",
"web-ext": "8.2.0",
"ws": "8.17.1",
"yazl": "2.5.1"
}
}