-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.08 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.08 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
{
"name": "msync",
"version": "0.3.0",
"private": true,
"description": "A desktop media client that streams and mirrors assets between MMedia and MDrive, with automated folder-based reorganization and bulk watermark/logo stamping at scale",
"license": "MIT",
"author": "Shirsendu Bairagi <shirsendu2001@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/Modest-Human-Brands/msync.git"
},
"type": "module",
"scripts": {
"dev": "vp dev --port 3002",
"detect": "gitleaks git --verbose",
"lint": "vp lint --fix",
"format": "vp fmt . --write",
"build": "tsc && vp build",
"preview": "vp preview",
"clean": "(cd src-tauri && cargo clean)",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:dev:mobile": "tauri android dev",
"tauri:build:mobile": "tauri android build",
"docker:build": "docker build --build-arg VERSION=dev --build-arg BUILD_TIME=now -t msync:dev ."
},
"dependencies": {
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "~2.7.0",
"@tauri-apps/plugin-fs": "~2.5.0",
"@tauri-apps/plugin-opener": "~2.5.3",
"@tauri-apps/plugin-shell": "~2.3.5",
"@vitejs/plugin-vue": "^6.0.6",
"@vueuse/core": "^14.2.1",
"execa": "^9.6.1",
"tailwindcss": "^4.2.2",
"unplugin-auto-import": "^21.0.0",
"unplugin-icons": "^23.0.1",
"unplugin-vue-components": "^32.0.0",
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vite-plus": "^0.1.16",
"vue": "^3.5.32",
"vue-router": "^5.0.4"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@tauri-apps/cli": "^2.10.1",
"@types/bun": "^1.3.12",
"typescript": "~6.0.2",
"vue-tsc": "^3.2.6"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"engines": {
"bun": "^1.2.9",
"node": "^22.11.0 || ^24.14.0",
"pnpm": "^9.15.0 || ^10.2.0"
},
"packageManager": "bun@1.3.12"
}