-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.83 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.83 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
{
"name": "snap-data-explorer-app",
"version": "1.0.1",
"description": "Privacy-first desktop app for exploring Snapchat data exports",
"author": "Kody Dennon",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/KodyDennon/SnapDataExplorer"
},
"homepage": "https://kodydennon.github.io/SnapDataExplorer/",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"dev:web": "VITE_MOCK=true vite --host 0.0.0.0 --port 1420",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"tauri": "tauri",
"release": "semantic-release --dry-run",
"release:manual": "./scripts/release-manual.sh"
},
"dependencies": {
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.0",
"clsx": "^2.1.1",
"framer-motion": "^12.33.0",
"lucide-react": "^0.563.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-virtuoso": "^4.18.1",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^5.1.4",
"conventional-changelog-conventionalcommits": "^9.1.0",
"jsdom": "^28.0.0",
"semantic-release": "^25.0.3",
"tailwindcss": "^4.1.18",
"typescript": "~5.9.3",
"vite": "^7.0.4",
"vitest": "^4.0.18"
}
}