-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "css-diff-devtools",
"type": "module",
"version": "0.0.2",
"private": true,
"packageManager": "[email protected]",
"description": "A browser extension that compares different CSS",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"dev:edge": "wxt -b edge",
"build": "pnpm run --filter . --parallel \"/^build:.*/\"",
"build:chrome": "wxt build -b chrome",
"build:firefox": "wxt build -b firefox",
"build:edge": "wxt build -b edge",
"zip": "pnpm run --filter . --parallel \"/^zip:.*/\"",
"zip:chrome": "wxt zip -b chrome",
"zip:firefox": "wxt zip -b firefox --mv3",
"zip:edge": "wxt zip -b edge",
"compile": "vue-tsc --noEmit",
"postinstall": "wxt prepare",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"element-plus": "^2.9.1",
"vue": "^3.5.12",
"vue-i18n": "10"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@types/chrome": "^0.0.280",
"@vueuse/core": "^12.0.0",
"@wxt-dev/module-vue": "^1.0.1",
"autoprefixer": "^10.4.20",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.17.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "5.6.3",
"vue-tsc": "^2.1.10",
"wxt": "^0.19.13"
}
}