-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.5 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.5 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
{
"name": "glit",
"version": "0.3.3",
"description": "Git worktree manager",
"author": {
"name": "NathanGuilhot",
"email": "contact@nighten.fr"
},
"type": "module",
"main": "dist/main/index.js",
"bin": {
"glit": "./bin/glit.js"
},
"scripts": {
"dev": "concurrently -k \"npm run dev:renderer\" \"npm run dev:main\"",
"dev:renderer": "vite",
"dev:main": "wait-on http://localhost:5173 && npm run build:main && npm run build:preload && electron .",
"build": "npm run build:icons && npm run build:main && npm run build:preload && npm run build:renderer && npm run build:cli && electron-builder",
"build:icons": "node scripts/generate-icons.mjs",
"build:main": "tsc --project tsconfig.main.json",
"build:preload": "tsc --project tsconfig.preload.json",
"build:renderer": "vite build",
"build:cli": "tsc --project tsconfig.cli.json",
"package": "npm run build:icons && npm run build:main && npm run build:preload && npm run build:renderer && npm run build:cli",
"start": "electron .",
"typecheck": "npm run typecheck:main && npm run typecheck:renderer && npm run typecheck:cli",
"typecheck:main": "tsc --project tsconfig.main.json --noEmit",
"typecheck:renderer": "tsc --project tsconfig.renderer.json",
"typecheck:preload": "tsc --project tsconfig.preload.json --noEmit",
"typecheck:cli": "tsc --project tsconfig.cli.json --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"install:global": "bash scripts/install-global.sh",
"test": "vitest run"
},
"dependencies": {
"@ebay/nice-modal-react": "^1.2.13",
"electron-log": "^5.4.3",
"electron-store": "^8.2.0",
"electron-updater": "^6.3.9",
"i18next": "^25.8.13",
"js-yaml": "^4.1.1",
"react-i18next": "^16.5.4"
},
"devDependencies": {
"@chakra-ui/react": "^2.10.9",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@eslint/js": "^9.39.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.5",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.7.0",
"concurrently": "^9.1.2",
"electron": "^40.6.1",
"electron-builder": "^26.8.1",
"eslint": "^9.39.3",
"eslint-plugin-i18next": "^6.1.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"framer-motion": "^11.18.2",
"globals": "^17.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"wait-on": "^8.0.2"
},
"build": {
"appId": "com.glit.app",
"productName": "Glit",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"package.json"
],
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
}
],
"category": "public.app-category.developer-tools",
"icon": "build/icon.icns",
"identity": null
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "build/icon.png",
"maintainer": "NathanGuilhot <contact@nighten.fr>"
},
"win": {
"target": [
"nsis"
],
"icon": "build/icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"publish": {
"provider": "github",
"owner": "NathanGuilhot",
"repo": "glit"
}
}
}