forked from Fahad-Dezloper/GitWidget
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 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
{
"name": "gitwidget",
"version": "1.0.4",
"description": "GitHub Widget for windows",
"main": "./out/main/index.js",
"author": "https://github.com/Fahad-Dezloper",
"homepage": "https://github.com/Fahad-Dezloper/GitWidget",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win --publish=always",
"build:mac": "npm run build && electron-builder --mac --publish=always"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^4.0.0",
"electron-store": "^8.2.0",
"electron-updater": "^6.3.9"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@types/node": "^22.14.1",
"@types/react": "^19.1.1",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^35.1.5",
"electron-builder": "^26.0.12",
"electron-vite": "^3.1.0",
"eslint": "^9.24.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"prettier": "^3.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"typescript": "^5.8.3",
"vite": "^6.2.6"
},
"build": {
"appId": "com.dezloper.gitwidget",
"productName": "GitWidget",
"directories": {
"output": "release"
},
"files": [
"out/**/*",
"dist/**/*",
"!**/node_modules/*/{test,__tests__}/**",
"!**/*.map",
"!**/node_modules/.cache/**",
"!**/node_modules/*/{README,readme}*",
"!**/node_modules/*/{LICENSE,license}*",
"!**/node_modules/*/{CHANGELOG,changelog}*"
],
"extraMetadata": {
"main": "out/main/index.js"
},
"compression": "maximum",
"npmRebuild": false,
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
},
"mac": {
"target": "dmg",
"icon": "assets/icon.icns"
},
"linux": {
"target": "AppImage",
"icon": "assets"
},
"publish": [
{
"provider": "github",
"owner": "Fahad-Dezloper",
"repo": "GitWidget"
}
]
}
}