-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
44 lines (44 loc) · 990 Bytes
/
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
{
"type": "module",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"build": "rollup --config",
"fix": "run-p 'lint -- --fix' format",
"lint": "eslint .",
"format": "prettier . --write",
"test": "run-p lint build unit",
"unit": "node --test",
"watch": "rollup --config --watch"
},
"dependencies": {
"webext-base-css": "^1.4.4",
"webext-options-sync": "^4.2.4"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.1",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/chrome": "^0.0.271",
"eslint": "^9.11.1",
"eslint-plugin-svelte": "^2.44.0",
"npm-run-all2": "^6.2.3",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"rollup": "^4.22.4",
"rollup-plugin-copy-glob": "^0.3.2",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.2.2",
"svelte": "^4.2.19"
},
"webExt": {
"sourceDir": "distribution",
"run": {
"target": [
"chromium"
]
}
}
}