-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "pdf-splitter",
"private": true,
"version": "1.0.2",
"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": "biome format --write .",
"fmt:cargo": "cd src-tauri && cargo fmt",
"fmt:check": "biome format .",
"fmt:cargo:check": "cd src-tauri && cargo fmt -- --check",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"ci": "biome ci .",
"type-check": "vue-tsc --noEmit"
},
"dependencies": {
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-opener": "^2.5.4",
"lucide-vue-next": "^1.0.0",
"vue": "^3.5.39"
},
"devDependencies": {
"@biomejs/biome": "2.5.1",
"@tauri-apps/cli": "^2.11.4",
"@vitejs/plugin-vue": "^6.0.7",
"esbuild": "^0.28.1",
"typescript": "^6.0.3",
"vite": "^8.1.0",
"vue-tsc": "^3.3.5"
}
}