-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.37 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
{
"name": "icon-converter",
"private": true,
"version": "1.0.4",
"main": "electron/main.js",
"author": {
"name": "houxiaohou",
"email": "itxysh@gmail.com",
"url": "https://github.com/itxys"
},
"description": "Professional-grade PNG to ICO converter with AI-powered icon generation.",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron:dev": "concurrently -k \"cross-env BROWSER=none npm start\" \"wait-on http://localhost:3000 && electron .\"",
"electron:build": "vite build && electron-builder"
},
"dependencies": {
"@google/genai": "^1.30.0",
"lucide-react": "^0.555.0",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^29.1.0",
"electron-builder": "^24.13.3",
"typescript": "^5.2.2",
"vite": "^5.1.4",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.itxys.iconconverter",
"productName": "Icon Converter",
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"electron/**/*"
],
"win": {
"target": "nsis"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage"
}
}
}