-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.92 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
{
"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.17",
"@types/nodegit": "^0.28.11",
"@weedzcokie/store": "^2.0.3",
"electron": "38.8.6",
"esbuild": "^0.28.0",
"oxfmt": "^0.52.0",
"oxlint": "^1.67.0",
"oxlint-tsgolint": "^0.23.0",
"preact": "^10.29.2",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.34.1+sha512.b58fbde6dca66a929538021581f648b4570b6ca19b18e7cbd7f2c07a7b24454155388dacdf08f2af3678e88a6d1fe04f9d609df24bf51735a060ea041b374ab7",
"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"
}
}
}