-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3 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
{
"private": true,
"name": "gib",
"version": "0.10.1",
"description": "A TUI application for automating the installation of BepInEx",
"license": "ISC",
"author": "Tobey Blaber",
"homepage": "https://github.com/toebeann/gib",
"repository": {
"type": "git",
"url": "https://github.com/toebeann/gib.git"
},
"bugs": {
"url": "https://github.com/toebeann/gib/issues"
},
"funding": [
"https://github.com/toebeann/gib?sponsor=1",
{
"type": "github",
"url": "https://github.com/sponsors/toebeann"
},
{
"type": "kofi",
"url": "https://ko-fi.com/toebean_"
},
{
"type": "paypal",
"url": "https://paypal.me/tobeyblaber"
}
],
"sideEffects": false,
"type": "module",
"bin": "src/cli/index.ts",
"scripts": {
"start": "bun src/cli",
"build:local": "bun build --compile --minify --sourcemap --bytecode --format=esm src/cli --outfile bin/gib",
"build:darwin-x64": "bun build:local --drop=console --drop=debugger --target=bun-darwin-x64 --outfile dist/gib-darwin-x64",
"build:darwin-aarch64": "bun build:local --drop=console --drop=debugger --target=bun-darwin-aarch64 --outfile dist/gib-darwin-aarch64",
"build": "bun --parallel build:darwin-x64 build:darwin-aarch64",
"local": "bun build:local && bin/gib --no-path-check",
"local:sh": "bun build:local && (export GIB_INSTALL=.; cat gib.sh | bash)",
"lipo": "lipo -create -output ./dist/gib-darwin-universal ./dist/gib-darwin-x64 ./dist/gib-darwin-aarch64",
"zip:target": "zip -Dj9 dist/gib-$TARGET.zip dist/gib-$TARGET",
"zip": "TARGET=darwin-universal bun zip:target",
"dist": "rm -rf ./dist && bun run build && bun lipo && bun zip"
},
"engines": {
"bun": "^1.3.10"
},
"os": [
"darwin"
],
"devDependencies": {
"@total-typescript/ts-reset": "^0.6.1",
"@types/bun": "1.3.10",
"@types/center-align": "^1.0.2",
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/lodash.camelcase": "^4.3.9",
"@types/lodash.isplainobject": "^4.0.9",
"@types/lodash.mapkeys": "^4.6.9",
"@types/node": "^25.5.0",
"@types/plist": "^3.0.5",
"@types/readline-sync": "^1.4.8",
"@types/unquote": "^1.1.0",
"ix": "^7.0.0",
"mitata": "^1.0.34"
},
"dependencies": {
"@node-steam/id": "^1.2.0",
"@node-steam/vdf": "^2.2.0",
"async-wait-until": "^2.0.31",
"boxen": "^8.0.1",
"center-align": "^1.0.1",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"cli-width": "^4.1.0",
"figlet": "^1.11.0",
"find-process": "^2.1.0",
"gradient-string": "^3.0.0",
"jszip": "^3.10.1",
"lodash.camelcase": "^4.3.0",
"lodash.isplainobject": "^4.0.6",
"lodash.mapkeys": "^4.6.0",
"open": "^11.0.0",
"path-equal": "^1.2.5",
"plist": "^3.1.0",
"readline-sync": "^1.4.10",
"slashes": "^3.0.12",
"steam-binary-vdf": "^0.1.0",
"string-argv": "^0.3.2",
"terminal-link": "^5.0.0",
"unquote": "^1.1.1",
"untildify": "^6.0.0",
"zod": "^4.3.6"
}
}