-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.09 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.09 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
{
"name": "git-good",
"version": "0.1.5",
"description": "Git good",
"keywords": [],
"homepage": "https://github.com/weedz/git-good#readme",
"bugs": {
"url": "https://github.com/weedz/git-good/issues"
},
"license": "GPL-3.0-or-later",
"author": {
"name": "Linus Björklund",
"email": "weedzcokie@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weedz/git-good.git"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/main.js",
"scripts": {
"start": "electron --ozone-platform-hint=wayland .",
"lint": "oxlint -c .oxlintrc.json --type-aware --type-check --tsconfig ./tsconfig.json -D correctness -D perf -D no-cycle",
"format": "oxfmt",
"format:check": "oxfmt --check",
"tsc:watch": "tsc --noEmit --watch --preserveWatchOutput",
"dev": "NODE_ENV=development pnpm run build",
"build": "rm -rf dist;mkdir dist;cp static/* dist/; node scripts/build.mjs",
"build:native": "./scripts/build-native.sh"
},
"dependencies": {
"nodegit": "github:weedz/nodegit#master"
},
"devDependencies": {
"@types/node": "^22.19.15",
"@types/nodegit": "^0.28.11",
"@weedzcokie/store": "^2.0.3",
"electron": "38.7.2",
"esbuild": "^0.27.4",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"oxlint-tsgolint": "^0.19.0",
"preact": "^10.29.0",
"typescript": "^6.0.2"
},
"resolutions": {
"@electron/get": "^4",
"node-abi": "^4"
},
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild",
"nodegit"
]
},
"build": {
"appId": "git-good",
"afterPack": "./scripts/after-pack.cjs",
"directories": {
"output": "out"
},
"linux": {
"category": "Development",
"target": [
"AppImage",
"deb"
]
},
"mac": {
"category": "public.app-category.developer-tools"
}
}
}