-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.38 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
{
"name": "shapic",
"productName": "Shapic",
"version": "1.1.1",
"description": "Image resize & optimize desktop app for SNS platforms",
"type": "module",
"main": "./out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"package": "electron-vite build && electron-builder --config electron-builder.yml",
"test": "vitest run"
},
"keywords": [
"image",
"resize",
"electron",
"sharp"
],
"author": {
"name": "lasbe",
"email": "devlasbe@gmail.com",
"url": "https://lasbe.kr"
},
"license": "GPL-3.0",
"dependencies": {
"clsx": "^2.1.1",
"electron-store": "^11.0.2",
"exif-reader": "^2.0.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-toastify": "^11.0.5",
"sharp": "^0.34.5",
"tailwind-merge": "^3.5.0",
"zustand": "^5.0.12"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild",
"sharp"
]
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"electron": "^41.2.0",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^7.3.2",
"vitest": "^4.1.4"
}
}