-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.02 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
{
"name": "shadowcrypt",
"version": "5.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "tsgo -p tsconfig.check.json; npx biome lint; npx tailwindcss -i ./src/index.css -o /dev/null 2>&1 | grep -E '^(CssSyntaxError|Error):.*' || true",
"preview": "vite preview",
"test": "vitest run"
},
"dependencies": {
"@noble/curves": "^2.2.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.8",
"@scure/bip39": "^2.2.0",
"@supabase/supabase-js": "2.103.1",
"@zxcvbn-ts/core": "^4.1.2",
"@zxcvbn-ts/language-en": "^4.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"hash-wasm": "^4.12.0",
"idb": "^8.0.3",
"lucide-react": "^0.576.0",
"miaoda-react-devkit": "0.1.1-beta.15",
"next-themes": "^0.4.6",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-dropzone": "^14.3.8",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.66.0",
"react-router": "^7.9.5",
"react-router-dom": "^7.9.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@tailwindcss/container-queries": "^0.1.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@typescript/native-preview": "7.0.0-dev.20260303.1",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/ui": "^4.1.9",
"autoprefixer": "^10.4.27",
"happy-dom": "^20.10.6",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.11",
"typescript": "~5.9.3",
"vite": "npm:rolldown-vite@latest",
"vitest": "^4.1.9"
},
"description": "ShadowCrypt — Zero-Knowledge End-to-End Encrypted Messaging Platform"
}