-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.84 KB
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
{
"name": "css-diff-devtools",
"type": "module",
"version": "0.1.1",
"private": true,
"packageManager": "pnpm@9.14.1",
"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",
"test": "pnpm test:unit",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "pnpm build:chrome && playwright test",
"postinstall": "wxt prepare",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"@vue/shared": "^3.5.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-vue-next": "^1.0.0",
"reka-ui": "^2.9.7",
"tailwind-merge": "^3.6.0",
"vue": "^3.5.12",
"vue-sonner": "^2.0.9"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@playwright/test": "^1.60.0",
"@tailwindcss/vite": "^4.3.0",
"@types/chrome": "^0.0.280",
"@vitejs/plugin-vue": "^6.0.6",
"@vitest/coverage-v8": "^4.1.6",
"@vue/test-utils": "^2.4.10",
"@vueuse/core": "^12.0.0",
"@wxt-dev/module-vue": "^1.0.3",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.17.0",
"eslint-import-resolver-node": "^0.3.10",
"happy-dom": "^20.9.0",
"tailwindcss": "^4.3.0",
"typescript": "5.6.3",
"vitest": "^4.1.6",
"vue-tsc": "^2.1.10",
"wxt": "^0.20.26"
}
}