-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.01 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
{
"name": "tab-reaper",
"private": true,
"version": "0.2.1",
"description": "Automatically closes idle tabs, freeing up clutter and helping you stay focused on what matters most.",
"source": "src/manifest.json",
"type": "module",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"build": "vite build",
"lint": "npx @biomejs/biome ci ./src ./tests --config-path=./",
"lint:fix": "npx @biomejs/biome check ./src ./tests --apply --config-path=./",
"prebuild": "rimraf dist",
"start": "vite",
"test:e2e": "npx playwright test",
"test:unit": "vitest --dir ./src/",
"test:unit:ci": "npm run test:unit -- --run",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "Vladislav Bulyukhin <vladislav.bulyukhin@gmail.com>",
"license": "GPL-3.0",
"devDependencies": {
"@biomejs/biome": "1.6.2",
"@crxjs/vite-plugin": "^2.0.0-beta.28",
"@playwright/test": "^1.49.1",
"@types/chrome": "^0.0.235",
"@types/node": "^20.11.30",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.19",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "^8.4.24",
"rimraf": "^5.0.1",
"tailwindcss": "^3.3.2",
"vite": "^4.5.5",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6",
"vitest-mock-extended": "^1.3.1",
"web-ext-types": "^3.2.1"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toggle": "^1.0.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"lucide-react": "^0.363.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.2",
"react-router-dom": "^6.23.0",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
}
}