-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.55 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.55 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
{
"name": "chrome-csv-password-cleaner",
"version": "1.0.0",
"private": false,
"description": "A secure, privacy-focused web tool for organizing and cleaning up password exports from Chromium-based browsers",
"keywords": [
"password-manager",
"chrome-passwords",
"brave-passwords",
"edge-passwords",
"password-organizer",
"csv-parser",
"privacy-tools",
"security-tools",
"chromium",
"nextjs",
"typescript",
"tailwindcss",
"client-side",
"zero-server"
],
"author": "Peak Twilight",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dreamlabs-ch/csv-password-cleaner.git"
},
"bugs": {
"url": "https://github.com/dreamlabs-ch/csv-password-cleaner/issues"
},
"homepage": "https://github.com/dreamlabs-ch/csv-password-cleaner#readme",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"critters": "^0.0.23",
"framer-motion": "^12.4.10",
"next": "^14.2.35",
"papaparse": "^5.4.1",
"react": "^18",
"react-dom": "^18"
},
"overrides": {
"minimatch": ">=10.0.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/papaparse": "^5.3.14",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5"
}
}