-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.23 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
{
"type": "module",
"scripts": {
"build": "node scripts/build",
"lint": "eslint . --ext .js; stylelint '**/*.css'",
"lint-fix": "eslint . --ext .js --fix; stylelint '**/*.css' --fix",
"lint-web-ext": "npm run --silent build && web-ext lint --source-dir dist/firefox",
"start": "npm run --silent start-firefox-desktop",
"start-chromium": "node scripts/build watch chromium",
"start-edge": "node scripts/build watch edge",
"start-firefox-desktop": "node scripts/build watch firefox-desktop",
"start-firefox-android": "node scripts/build watch firefox-android",
"test": "jest --verbose",
"test-coverage": "jest --coverage"
},
"license": "GPL-2.0-or-later",
"dependencies": {
"tesseract.js": "^5.0.4"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"archiver": "^6.0.1",
"convert-svg-to-png": "^0.6.4",
"esbuild": "^0.19.12",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"stylelint": "^16.2.0",
"stylelint-config-standard": "^36.0.0",
"svgo": "^3.2.0",
"web-ext": "^7.11.0"
}
}