-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.89 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
{
"name": "durakhelper",
"version": "0.0.1",
"author": "radik.islamov <[email protected]>",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": ">=20.12.2"
},
"scripts": {
"dev": "yarn clean:dev && webextension-toolbox dev --copy-ignore [*.bundle] --swc --no-auto-reload --src src --config ./webext.config.js",
"build": "yarn clean:build && webextension-toolbox build --copy-ignore [*.bundle] --swc --src src --config ./webext.config.js",
"prebuild": "node scripts/bundle-downloader.mjs",
"build-no-minimize": "webextension-toolbox build --copy-ignore [*.bundle] --swc --no-minimize --src src --config ./webext.config.js",
"clean:dev": "rimraf ./dist",
"clean:build": "rimraf ./packages"
},
"devDependencies": {
"@webextension-toolbox/webextension-toolbox": "^7.1.1",
"chalk": "4.1.2",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"got": "^13.0.0",
"prettier": "^3.0.1",
"remove-files-webpack-plugin": "^1.5.0",
"rimraf": "^5.0.1",
"webpack-merge": "^5.9.0"
},
"resolutions": {
"styled-components": "^5"
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"browserslist": [
"last 5 Chrome versions",
"last 5 Firefox versions",
"last 5 Opera versions",
"last 5 Edge versions"
],
"dependencies": {
"@emotion/is-prop-valid": "^1.2.1",
"@nanostores/logger": "^0.2.3",
"@nanostores/persistent": "^0.9.1",
"@nanostores/preact": "^0.5.0",
"lodash": "^4.17.21",
"nanostores": "^0.9.3",
"preact": "^10.17.1",
"react-draggable": "^4.4.6",
"styled-components": "^6.0.8",
"webextension-polyfill": "^0.10.0"
}
}