forked from hankxdev/one-click-extensions-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.82 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
{
"private": true,
"scripts": {
"build": "rollup --config",
"fix": "run-p 'lint:* -- --fix'",
"lint": "run-p lint:*",
"lint:css": "stylelint 'source/*.css'",
"lint:js": "eslint . --ext .svelte,.js",
"format": "prettier . --write",
"test": "run-p lint:* build",
"watch": "rollup --config --watch",
"prepare": "husky install"
},
"type": "module",
"eslintConfig": {
"env": {
"browser": true,
"webextensions": true
},
"plugins": [
"svelte",
"unicorn"
],
"extends": [
"xo",
"plugin:unicorn/recommended",
"prettier"
],
"rules": {
"unicorn/prefer-top-level-await": "off",
"no-inner-declarations": "off",
"no-new": "off",
"no-bitwise": "off"
},
"overrides": [
{
"files": [
"*.svelte"
],
"parser": "svelte-eslint-parser"
}
]
},
"stylelint": {
"extends": [
"stylelint-config-xo",
"stylelint-config-prettier"
]
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@types/chrome": "^0.0.246",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-plugin-svelte": "^2.33.1",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"rollup": "^3.29.1",
"rollup-plugin-copy-glob": "^0.3.2",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.1.6",
"stylelint": "^15.10.3",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-xo": "^0.22.0",
"svelte": "^4.2.0",
"svelte-eslint-parser": "^0.33.0"
},
"webExt": {
"sourceDir": "distribution",
"run": {
"target": [
"chromium"
]
}
},
"dependencies": {
"webext-base-css": "^1.4.3",
"webext-options-sync": "^4.2.1",
"webext-polyfill-kinda": "^1.0.2"
}
}