-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.91 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.91 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": "zefer",
"version": "0.7.0",
"description": "Client-side encryption tool that converts text and files into password-protected .zefer files using AES-256-GCM. 100% browser-based, zero-knowledge, open source.",
"keywords": [
"encryption",
"aes-256-gcm",
"pbkdf2",
"zero-knowledge",
"client-side",
"secret-sharing",
"file-encryption",
"password-protected",
"web-crypto-api",
"nextjs",
"react",
"typescript"
],
"homepage": "https://zefer.carrillo.app",
"bugs": {
"url": "https://github.com/carrilloapps/zefer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carrilloapps/zefer.git"
},
"funding": [
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/carrilloapps"
},
{
"type": "github",
"url": "https://github.com/sponsors/carrilloapps"
}
],
"license": "MIT",
"author": {
"name": "Jose Carrillo",
"email": "m@carrillo.app",
"url": "https://carrillo.app"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"validate": "npm run typecheck && npm run lint && npm run test && npm run build"
},
"dependencies": {
"lucide-react": "~1.8.0",
"next": "^16.2.7",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"sonner": "~2.0.7"
},
"devDependencies": {
"@tailwindcss/postcss": "~4.2.2",
"@types/node": "~25.6.0",
"@types/react": "^19.2.16",
"@types/react-dom": "~19.2.3",
"@vitest/coverage-v8": "~4.1.4",
"eslint": "~10.2.0",
"eslint-config-next": "^16.2.7",
"tailwindcss": "~4.2.2",
"typescript": "~6.0.2",
"vitest": "~4.1.4"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"private": true
}