-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.32 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.32 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
{
"private": true,
"type": "module",
"scripts": {
"build": "run-s build:* --continue-on-error",
"build:clean": "rimraf dist",
"build:typescript": "tsc --noEmit",
"build:webpack": "cross-env NODE_OPTIONS=\"--loader ts-node/esm\" webpack --mode=production",
"build:icons": "cross-env NODE_OPTIONS=\"--loader ts-node/esm\" node scripts/generateIcons.js",
"publish": "run-s publish:*",
"publish:build": "npm run build",
"publish:clean": "rimraf publish && mkdir publish",
"publish:archive-dist": "cd dist && zip -r ../publish/dist.zip .",
"publish:archive-code": "( git status --short| grep '^?' | cut -d\\ -f2- && git ls-files ) | sort -u | xargs zip -r ./publish/src.zip",
"fix": "run-p \"lint:* -- --fix\"",
"lint": "run-p lint:* --continue-on-error",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:js": "xo",
"watch": "run-p watch:* --continue-on-error",
"watch:typescript": "tsc --noEmit --watch --preserveWatchOutput",
"watch:webpack": "cross-env NODE_OPTIONS=\"--loader ts-node/esm\" webpack --mode=development --watch"
},
"dependencies": {
"@resvg/resvg-js": "^2.2.0",
"dom-chef": "^5.1.0",
"dompurify": "^3.2.4",
"query-string": "^7.1.1",
"rimraf": "^3.0.2",
"webext-base-css": "^1.4.0",
"webext-detect-page": "^4.0.1",
"webext-domain-permission-toggle": "^3.0.0",
"webext-dynamic-content-scripts": "^8.1.1",
"webext-options-sync-per-domain": "^2.0.2",
"webext-storage-cache": "^5.0.0",
"webextension-polyfill": "^0.9.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^2.0.0",
"@types/firefox-webext-browser": "^94.0.1",
"@types/react": "^18.0.18",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"esbuild-loader": "^2.19.0",
"eslint": "^8.23.0",
"eslint-config-xo": "^0.42.0",
"eslint-config-xo-typescript": "^0.53.0",
"mini-css-extract-plugin": "^2.6.1",
"npm-run-all": "^4.1.5",
"size-plugin": "^2.0.2",
"terser-webpack-plugin": "^5.3.3",
"ts-node": "^10.8.1",
"type-fest": "^2.13.1",
"typed-query-selector": "^2.6.1",
"typescript": "^4.8.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"engines": {
"node": ">= 16",
"npm": ">= 7"
},
"webExt": {
"sourceDir": "dist",
"run": {
"keepProfileChanges": true
}
}
}