-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.67 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.67 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "pickshot",
"version": "0.1.4",
"description": "Electron + React desktop app for rapidly tagging favorite illustrations from large folders.",
"author": "igz0",
"license": "MIT",
"main": "dist/main/index.js",
"type": "module",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"package": "npm run build && electron-builder",
"package:mac": "npm run build && electron-builder --mac",
"package:win": "npm run build && electron-builder --win",
"package:linux": "npm run build && electron-builder --linux",
"release": "npm run build && node ./build.cjs",
"format": "biome format --write .",
"lint": "biome lint ./src",
"lint:fix": "biome check --write ./src",
"lint:fix-unsafe": "biome check --write --unsafe ./src",
"rebuild-native": "npm rebuild better-sqlite3 --runtime=electron --target=30.0.6 --disturl=https://electronjs.org/headers && npm rebuild sharp --runtime=electron --target=30.0.6 --disturl=https://electronjs.org/headers"
},
"dependencies": {
"better-sqlite3": "^9.5.0",
"heic-convert": "^2.1.0",
"exiftool-vendored": "^30.5.0",
"framer-motion": "^11.0.23",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-virtualized-auto-sizer": "^1.0.7",
"react-window": "^1.8.10",
"sharp": "^0.33.3"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.14.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"electron": "^30.0.6",
"electron-builder": "^26.0.12",
"electron-vite": "^2.0.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.9",
"typescript": "^5.4.5",
"vite": "^5.2.11"
},
"build": {
"appId": "com.igz0.pickshot",
"productName": "PickShot",
"directories": {
"output": "release"
},
"files": [
"dist/**"
],
"asar": true,
"mac": {
"target": [
"dmg"
],
"category": "public.app-category.photography",
"identity": null,
"hardenedRuntime": false,
"icon": "assets/icon.png"
},
"dmg": {
"sign": false
},
"win": {
"icon": "assets/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "assets/icon.ico",
"installerHeaderIcon": "assets/icon.ico"
}
},
"postinstall": "npm run rebuild-native",
"volta": {
"node": "22.19.0",
"npm": "10.8.2"
}
}