-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.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
{
"name": "batch-image-handler",
"version": "0.1.0",
"description": "Batch image resizing and export tool",
"main": "./out/main/index.js",
"author": "evomark",
"private": true,
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"start": "electron-vite preview",
"build:mac": "electron-vite build && electron-builder --mac"
},
"dependencies": {
"sharp": "^0.35.3",
"vue": "^3.5.40"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.8",
"electron": "^43.2.0",
"electron-builder": "^26.15.3",
"electron-vite": "^5.0.0",
"vite": "^7.3.6"
},
"build": {
"appId": "co.uk.evomark.batch-image-handler",
"productName": "Batch Image Handler",
"directories": {
"buildResources": "build",
"output": "dist"
},
"files": [
"out/**/*",
"package.json"
],
"asarUnpack": [
"**/node_modules/sharp/**",
"**/node_modules/@img/**"
],
"mac": {
"target": [
{
"target": "dmg",
"arch": ["arm64"]
},
{
"target": "zip",
"arch": ["arm64"]
}
],
"icon": "build/icon.icns",
"category": "public.app-category.graphics-design"
},
"dmg": {
"sign": false
}
}
}