-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.06 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 3.06 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "designer-feedback",
"version": "1.1.4",
"private": true,
"type": "module",
"scripts": {
"prepare": "lefthook install",
"dev": "wxt",
"build:chrome": "wxt build -b chrome --mv3",
"build:firefox": "wxt build -b firefox --mv3",
"build": "npm run build:chrome && npm run build:firefox",
"test": "vitest run",
"test:all": "npm run test && npm run test:e2e",
"test:coverage": "wxt prepare && vitest run --coverage",
"test:e2e:chrome": "VITE_DF_E2E=1 E2E_HOST_PERMISSIONS=broad wxt build -b chrome --mv3 && VITE_DF_E2E=1 E2E_HOST_PERMISSIONS=broad playwright test --project=chromium",
"test:e2e:firefox": "node scripts/firefox-e2e.mjs",
"test:e2e": "npm run test:e2e:chrome && npm run test:e2e:firefox",
"typecheck": "wxt prepare && tsc --noEmit",
"lint": "wxt prepare && node node_modules/gts/build/src/cli.js lint",
"check": "npm run lint && npm run typecheck",
"lint:fix": "wxt prepare && node node_modules/gts/build/src/cli.js fix",
"format": "npm run lint:fix",
"verify:manifests": "node scripts/verify-manifests.mjs",
"check:bundle-size": "node scripts/check-bundle-size.mjs",
"zip": "wxt zip -b chrome --mv3",
"zip:firefox": "wxt zip -b firefox --mv3",
"publish": "npm run zip && npm run zip:firefox && wxt submit --chrome-zip .output/*-chrome.zip --firefox-zip .output/*-firefox.zip --firefox-sources-zip .output/*-sources.zip",
"publish:dry-run": "npm run zip && npm run zip:firefox && wxt submit --dry-run --chrome-zip .output/*-chrome.zip --firefox-zip .output/*-firefox.zip --firefox-sources-zip .output/*-sources.zip"
},
"dependencies": {
"@base-ui/react": "^1.1.0",
"@webext-core/messaging": "^2.3.0",
"clsx": "^2.1.1",
"framer-motion": "^12.29.2",
"lodash-es": "^4.17.23",
"lucide-react": "^0.563.0",
"mitt": "^3.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zustand": "^5.0.10"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@eslint/js": "^9.19.0",
"@playwright/test": "^1.58.0",
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/lodash-es": "^4.17.12",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.2.0",
"@wxt-dev/auto-icons": "^1.1.0",
"@wxt-dev/module-react": "^1.1.3",
"eslint": "^9.19.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-playwright": "^2.5.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^7.0.1",
"geckodriver": "^6.1.0",
"globals": "^17.2.0",
"gts": "^7.0.0",
"jsdom": "^27.4.0",
"knip": "^5.82.1",
"lefthook": "^2.0.16",
"puppeteer": "^24.36.0",
"selenium-webdriver": "^4.40.0",
"sharp": "^0.34.5",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.2",
"vitest": "^4.0.18",
"wxt": "^0.20.13"
}
}