-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 3.19 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
{
"private": true,
"scripts": {
"build": "NODE_ENV=production parcel build source/manifest.json --no-content-hash --no-source-maps --dist-dir distribution --no-cache --detailed-report 0",
"lint": "run-p lint:*",
"lint-fix": "run-p 'lint:* -- --fix'",
"lint:css": "stylelint source/**/*.css source/**/*.pcss",
"lint:js": "eslint --fix \"source/**/*.{js,svelte}\"",
"lint:prettier": "prettier --plugin-search-dir=. --check \"source/**/*.{js,svelte,pcss,css,html}\"",
"test": "run-p lint:* build",
"watch": "parcel watch source/manifest.json --dist-dir distribution --no-cache --no-hmr"
},
"browserslist": [
"last 2 Chrome version",
"last 2 Firefox version"
],
"stylelint": {
"plugins": [
"stylelint-prettier"
],
"extends": [
"stylelint-config-standard",
"stylelint-config-styled-components",
"stylelint-config-prettier"
],
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"extends",
"apply",
"tailwind",
"components",
"utilities",
"screen",
"layer"
]
}
],
"font-weight-notation": "numeric"
}
},
"dependencies": {
"webext-options-sync": "^4.0.1",
"webext-storage-cache": "^5.1.1",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/eslint-parser": "^7.19.1",
"@fontsource/iosevka": "^4.5.4",
"@parcel/config-webextension": "^2.8.3",
"@parcel/css": "^1.14.0",
"@parcel/optimizer-cssnano": "^2.8.3",
"@parcel/optimizer-htmlnano": "^2.8.2",
"@parcel/packager-css": "^2.8.2",
"@parcel/packager-html": "^2.8.2",
"@parcel/transformer-css": "^2.8.2",
"@parcel/transformer-html": "^2.8.2",
"@parcel/transformer-postcss": "^2.8.2",
"@parcel/transformer-posthtml": "^2.8.2",
"@parcel/transformer-webextension": "^2.8.2",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/lodash": "^4.14.191",
"autoprefixer": "^10.4.13",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-svelte3": "^4.0.0",
"lightningcss": "^1.17.1",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"parcel": "^2.8.3",
"parcel-transformer-svelte": "^1.2.3",
"postcss": "^8.4.21",
"postcss-custom-properties": "^13.1.1",
"postcss-import": "^15.1.0",
"postcss-url": "^10.1.3",
"prettier": "^2.8.3",
"prettier-plugin-svelte": "^2.9.0",
"prettier-plugin-tailwindcss": "^0.2.2",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-prettier": "^2.0.0",
"stylelint-processor-styled-components": "^1.10.0",
"svelte": "^3.55.1",
"svelte-check": "^3.0.3",
"svelte-dnd-action": "^0.9.22",
"svelte-preprocess": "^5.0.0",
"tailwindcss": "^3.2.4",
"urlpattern-polyfill": "^6.0.2"
},
"webExt": {
"sourceDir": "distribution"
}
}