-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.78 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 3.78 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "open-git-control",
"productName": "Open-Git-Control",
"private": true,
"version": "1.1.1",
"description": "Desktop app for organizing and controlling Git repositories.",
"author": {
"name": "Tim Bornemann",
"email": "tim@timbornemann.de"
},
"main": "dist-electron/electron/main.js",
"repository": {
"type": "git",
"url": "https://github.com/timbornemann/Open-Git-Control.git"
},
"scripts": {
"dev": "concurrently -k \"vite\" \"npm run electron:dev\"",
"electron:dev": "npm run build:electron && wait-on tcp:5173 && cross-env NODE_ENV=development node scripts/start-electron.js",
"build": "tsc && vite build && npm run build:electron",
"build:electron": "tsc --project tsconfig.node.json",
"dist": "npm run build && electron-builder --publish never",
"dist:win": "npm run build && electron-builder --win nsis --x64 --publish never",
"dist:linux": "npm run build && electron-builder --linux AppImage deb --x64 --publish never",
"dist:mac": "npm run build && electron-builder --mac dmg zip --x64 --publish never",
"release:win": "npm run build && electron-builder --win nsis --x64 --publish always",
"release:linux": "npm run build && electron-builder --linux AppImage deb --x64 --publish always",
"release:mac": "npm run build && electron-builder --mac dmg zip --x64 --publish always",
"preview": "vite preview",
"electron:start": "cross-env NODE_ENV=development node scripts/start-electron.js",
"test": "npm run test:unit",
"test:unit": "node scripts/run-tests.js",
"test:coverage": "node scripts/run-tests.js --coverage",
"test:ci": "npm run build:electron && npm run test:coverage && npm run build"
},
"dependencies": {
"electron-updater": "^6.6.2",
"lucide-react": "^0.300.0",
"octokit": "^5.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^4.0.18",
"concurrently": "^9.2.1",
"cross-env": "^7.0.3",
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vitest": "^4.0.18",
"wait-on": "^9.0.4"
},
"build": {
"appId": "com.opengitcontrol.app",
"productName": "Open-Git-Control",
"directories": {
"output": "release"
},
"files": [
"dist/**",
"dist-electron/**",
"package.json",
"logo.ico",
"logo.png"
],
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"publish": [
{
"provider": "github",
"owner": "timbornemann",
"repo": "Open-Git-Control",
"releaseType": "release"
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "logo.ico"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true
},
"linux": {
"maintainer": "Tim Bornemann <tim@timbornemann.de>",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
],
"icon": "logo.png",
"category": "Development"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64"
]
},
{
"target": "zip",
"arch": [
"x64"
]
}
],
"category": "public.app-category.developer-tools"
}
}
}