-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.92 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
{
"name": "auth-header-injector",
"version": "0.1.1",
"description": "Auth HI! - Chrome extension for injecting auth headers. Built with SDK Kit.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"package": "node scripts/create-zip.js",
"prepare": "husky"
},
"keywords": ["chrome-extension", "auth", "headers", "sdk-kit", "developer-tools"],
"author": "ProsDevLab",
"license": "MIT",
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=22"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@lytics/sdk-kit": "^0.1.1",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.562.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.69.0",
"tailwind-merge": "^3.4.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@types/chrome": "^0.0.278",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/ui": "^4.0.16",
"autoprefixer": "^10.4.20",
"happy-dom": "^20.0.11",
"husky": "^9.1.7",
"postcss": "^8.4.49",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-web-extension": "^4.1.9",
"vitest": "^4.0.16"
}
}