-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.21 KB
/
package.json
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
{
"name": "GitFiend",
"version": "0.46.3",
"description": "A Git client designed for humans",
"homepage": "https://gitfiend.com",
"main": "./resources/dist/main.js",
"scripts": {
"test": "jest --config ./jest.config.js --watch",
"testAll": "jest --config ./jest.config.js",
"postinstall": "tsx ./scripts/override-electron-version.ts",
"start": "electron resources/dist/main.js",
"watch": "tsx ./scripts/watch.ts",
"watchDev": "tsx ./scripts/watch-dev.ts",
"watchShell": "webpack --watch --progress --mode=development",
"watchShellDev": "webpack --watch --progress --mode=development --env devUI=true",
"dist": "tsx scripts/dist.ts"
},
"author": "Toby Suggate <tjsuggate@gmail.com>",
"license": "MIT",
"devDependencies": {
"@electron/notarize": "^2.5.0",
"@types/jest": "^29.5.14",
"dotenv": "^16.4.7",
"electron": "^32.2.8",
"electron-builder": "^26.0.0-alpha.9",
"esbuild-loader": "^4.2.2",
"esbuild-register": "^3.6.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}