-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.44 KB
/
package.json
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
{
"name": "bucket-browser",
"productName": "Bucket Browser",
"version": "0.0.5",
"main": "dist-electron/main/index.js",
"description": "A desktop app to browse S3 buckets",
"author": "Kyle Upton <kyleaupton@gmail.com>",
"license": "GPL-3.0-only",
"keywords": [
"s3",
"bucket",
"browser",
"desktop",
"app"
],
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344/"
}
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "node scripts/build.js --build",
"release": "node scripts/build.js --build --publish",
"checkTypes": "npx vue-tsc --noEmit --p tsconfig.json",
"preview": "vite preview",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.600.0",
"@aws-sdk/lib-storage": "^3.600.0",
"@popperjs/core": "^2.11.8",
"@rollup/plugin-alias": "^5.1.0",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.5.2",
"@typescript-eslint/parser": "^8.3.0",
"@vee-validate/zod": "^4.13.2",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/devtools": "^6.6.3",
"@vue/eslint-config-typescript": "^13.0.0",
"@vueuse/core": "^11.0.3",
"autoprefixer": "^10.4.19",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.24.2",
"electron": "^32.0.1",
"electron-builder": "24.6.3",
"electron-log": "^5.1.7",
"electron-updater": "^6.2.1",
"eslint": "8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.26.0",
"kysely": "^0.27.4",
"lowdb": "^7.0.1",
"lucide-vue-next": "^0.446.0",
"nanoid": "^5.0.7",
"overlayscrollbars": "^2.9.2",
"pinia": "^2.1.7",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"pretty-bytes": "^6.1.1",
"radix-vue": "^1.9.4",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.4",
"tailwindcss-animate": "^1.0.7",
"tiny-emitter": "^2.1.0",
"typed-electron-ipc": "^2.0.0-alpha.2",
"typescript": "^5.4.2",
"vee-validate": "^4.13.2",
"vite": "^5.1.5",
"vite-plugin-electron": "^0.28.4",
"vite-plugin-electron-renderer": "^0.14.5",
"vue": "^3.4.32",
"vue-tsc": "^2.0.6",
"vue-virtual-scroller": "^2.0.0-beta.8",
"zod": "^3.23.8"
},
"dependencies": {
"better-sqlite3": "^11.2.1",
"keytar": "^7.9.0"
}
}