-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 4.27 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 4.27 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "aussie-vault-browser",
"private": true,
"version": "1.0.2",
"type": "module",
"scripts": {
"dev": "vite",
"dev:electron": "wait-on tcp:5173 && cross-env IS_DEV=true electron .",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test:build": "npm run build && npm run make",
"start": "electron-forge start",
"electron": "wait-on tcp:5173 && cross-env IS_DEV=true electron .",
"electron:dev": "npm run dev",
"electron:pack": "electron-builder",
"electron:pack:win": "electron-builder --win",
"electron:pack:mac": "electron-builder --mac",
"electron:pack:linux": "electron-builder --linux",
"make": "npm run build && electron-forge make",
"publish": "electron-forge publish",
"release": "./scripts/publish-release.sh",
"release:version": "./scripts/build-and-release.sh",
"release:quick": "npm run build && ./scripts/publish-release.sh",
"package": "electron-forge package",
"make:ci": "node scripts/build-all-platforms.cjs make",
"make:all": "node scripts/build-all-platforms.cjs make",
"make:current-platform": "electron-forge make",
"make:win": "electron-forge make --platform=win32",
"make:mac": "electron-forge make --platform=darwin --arch=universal",
"make:mac:intel": "electron-forge make --platform=darwin --arch=x64",
"make:mac:silicon": "electron-forge make --platform=darwin --arch=arm64",
"make:linux": "electron-forge make --platform=linux",
"publish:ci": "node scripts/build-all-platforms.cjs publish",
"publish:all": "node scripts/build-all-platforms.cjs publish",
"publish:current-platform": "electron-forge publish",
"publish:win": "electron-forge publish --platform=win32",
"publish:mac": "electron-forge publish --platform=darwin --arch=universal",
"publish:mac:intel": "electron-forge publish --platform=darwin --arch=x64",
"publish:mac:silicon": "electron-forge publish --platform=darwin --arch=arm64",
"publish:linux": "electron-forge publish --platform=linux",
"release:homebrew": "./scripts/release-with-homebrew.sh",
"update:homebrew": "./scripts/update-homebrew-formula.sh",
"create:installer": "./scripts/create-installer.sh"
},
"dependencies": {
"@azure/msal-node": "^3.6.4",
"@clerk/clerk-js": "^5.73.2",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@supabase/supabase-js": "^2.51.0",
"@tailwindcss/vite": "^4.1.10",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-query-devtools": "^5.83.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-squirrel-startup": "^1.0.1",
"lucide-react": "^0.518.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.10"
},
"devDependencies": {
"@electron-forge/cli": "^7.8.1",
"@electron-forge/maker-deb": "^7.8.1",
"@electron-forge/maker-dmg": "^7.8.1",
"@electron-forge/maker-squirrel": "^7.8.1",
"@electron-forge/maker-zip": "^7.8.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.8.1",
"@electron-forge/plugin-fuses": "^7.8.1",
"@electron-forge/publisher-github": "^7.8.1",
"@electron/fuses": "^1.8.0",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/node-fetch": "^2.6.13",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitejs/plugin-react": "^4.3.3",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^37.2.0",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.3.4",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"wait-on": "^7.0.1"
},
"main": "dist-electron/main.js"
}