-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 950 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 950 Bytes
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
{
"name": "pdf-splitter",
"private": true,
"version": "1.0.1",
"description": "A fast, beautiful macOS desktop app for splitting PDF files into individual pages.",
"repository": {"type":"git","url":"https://github.com/suradet-ps/pdf-splitter.git"},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"fmt": "cd src-tauri && cargo fmt",
"fmt:check": "cd src-tauri && cargo fmt -- --check",
"type-check": "vue-tsc --noEmit"
},
"dependencies": {
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-opener": "^2.5.3",
"lucide-vue-next": "^1.0.0",
"vue": "^3.5.32"
},
"devDependencies": {
"@tauri-apps/cli": "^2.10.1",
"@vitejs/plugin-vue": "^6.0.6",
"esbuild": "^0.28.0",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"vue-tsc": "^3.2.6"
}
}