@trebired/git-host 3.1.1 → 3.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +38 -2
- package/README.md +54 -33
- package/dist/api/forge/handler.d.ts.map +1 -1
- package/dist/api/forge/handler.js +4 -3
- package/dist/api/forge/handler.js.map +1 -1
- package/dist/api/forge/runtime.d.ts.map +1 -1
- package/dist/api/forge/runtime.js +2 -1
- package/dist/api/forge/runtime.js.map +1 -1
- package/dist/api/forge/socket.d.ts.map +1 -1
- package/dist/api/forge/socket.js +4 -3
- package/dist/api/forge/socket.js.map +1 -1
- package/dist/api/handler/response.js +6 -6
- package/dist/api/handler/response.js.map +1 -1
- package/dist/api/handler/route.d.ts +1 -1
- package/dist/api/handler/runtime.d.ts.map +1 -1
- package/dist/api/handler/runtime.js +2 -1
- package/dist/api/handler/runtime.js.map +1 -1
- package/dist/api/handler.d.ts.map +1 -1
- package/dist/api/handler.js +4 -3
- package/dist/api/handler.js.map +1 -1
- package/dist/api/socket/server.d.ts.map +1 -1
- package/dist/api/socket/server.js +4 -3
- package/dist/api/socket/server.js.map +1 -1
- package/dist/constants.d.ts +6 -3
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +9 -3
- package/dist/constants.js.map +1 -1
- package/dist/core/actions/runner/launch.js +1 -1
- package/dist/core/actions/runner/launch.js.map +1 -1
- package/dist/core/actions/types.d.ts +1 -1
- package/dist/core/actions/types.d.ts.map +1 -1
- package/dist/core/actions/workspace.js +2 -2
- package/dist/core/actions/workspace.js.map +1 -1
- package/dist/core/archive/context.d.ts.map +1 -1
- package/dist/core/archive/context.js +3 -2
- package/dist/core/archive/context.js.map +1 -1
- package/dist/core/create/git/forge/context.d.ts +1 -1
- package/dist/core/create/git/forge/context.d.ts.map +1 -1
- package/dist/core/create/git/forge/context.js +4 -3
- package/dist/core/create/git/forge/context.js.map +1 -1
- package/dist/core/create/git/host.d.ts.map +1 -1
- package/dist/core/create/git/host.js +5 -5
- package/dist/core/create/git/host.js.map +1 -1
- package/dist/core/forge_actions/job/release_asset.d.ts +1 -1
- package/dist/core/forge_actions/job/release_asset.d.ts.map +1 -1
- package/dist/core/forge_actions/job/release_asset.js.map +1 -1
- package/dist/core/forge_actions/runtime/job/execute.d.ts.map +1 -1
- package/dist/core/forge_actions/runtime/job/execute.js +1 -1
- package/dist/core/forge_actions/runtime/job/execute.js.map +1 -1
- package/dist/core/forge_actions/shared.d.ts +1 -1
- package/dist/core/forge_actions/shared.d.ts.map +1 -1
- package/dist/core/forge_actions/shared.js +4 -3
- package/dist/core/forge_actions/shared.js.map +1 -1
- package/dist/core/remote.js +3 -3
- package/dist/core/remote.js.map +1 -1
- package/dist/http/handler.d.ts.map +1 -1
- package/dist/http/handler.js +5 -4
- package/dist/http/handler.js.map +1 -1
- package/dist/logging.d.ts.map +1 -1
- package/dist/logging.js +3 -2
- package/dist/logging.js.map +1 -1
- package/dist/package-metadata.d.ts +6 -0
- package/dist/package-metadata.d.ts.map +1 -0
- package/dist/package-metadata.js +50 -0
- package/dist/package-metadata.js.map +1 -0
- package/dist/ssh/server/audit.d.ts.map +1 -1
- package/dist/ssh/server/audit.js +5 -3
- package/dist/ssh/server/audit.js.map +1 -1
- package/dist/ssh/server/shared.d.ts.map +1 -1
- package/dist/ssh/server/shared.js.map +1 -1
- package/dist/ssh/server.d.ts.map +1 -1
- package/dist/ssh/server.js +4 -3
- package/dist/ssh/server.js.map +1 -1
- package/dist/types/common.d.ts +1 -1
- package/dist/types/common.d.ts.map +1 -1
- package/dist/types/host/archive.d.ts +1 -1
- package/dist/types/host/archive.d.ts.map +1 -1
- package/dist/types/host/options.d.ts +1 -1
- package/dist/types/host/options.d.ts.map +1 -1
- package/native/git-host-actions-runner-darwin-arm64 +0 -0
- package/native/git-host-actions-runner-darwin-x64 +0 -0
- package/native/git-host-actions-runner-linux-arm64-gnu +0 -0
- package/native/git-host-actions-runner-linux-x64-gnu +0 -0
- package/package.json +52 -254
package/package.json
CHANGED
|
@@ -1,29 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
},
|
|
14
|
-
"description": "Embeddable Git host and forge for Node.js and Bun apps with real Git CLI execution, smart HTTP and SSH transports, repository automation, and backend APIs.",
|
|
15
|
-
"devDependencies": {
|
|
16
|
-
"@trebired/code-discipline": "^3.1.1",
|
|
17
|
-
"@types/bun": "^1.3.4",
|
|
18
|
-
"@types/node": "^24.10.1",
|
|
19
|
-
"@types/ssh2": "^1.15.5",
|
|
20
|
-
"socket.io-client": "^4.8.3",
|
|
21
|
-
"typescript": "^6.0.2"
|
|
2
|
+
"name": "@trebired/git-host",
|
|
3
|
+
"version": "3.1.10",
|
|
4
|
+
"description": "Embeddable Git host and forge for Bun apps with real Git CLI execution, smart HTTP and SSH transports, repository automation, and backend APIs.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"private": false,
|
|
7
|
+
"license": "AGPL-3.0-only",
|
|
8
|
+
"author": "Miroslav Machynka (Trebired)",
|
|
9
|
+
"config": {
|
|
10
|
+
"organization": {
|
|
11
|
+
"name": "trebired"
|
|
12
|
+
}
|
|
22
13
|
},
|
|
14
|
+
"packageManager": "bun@1.3.12",
|
|
23
15
|
"engines": {
|
|
24
|
-
"bun": ">=1.0.0"
|
|
25
|
-
"node": ">=18"
|
|
16
|
+
"bun": ">=1.0.0"
|
|
26
17
|
},
|
|
18
|
+
"main": "./dist/index.js",
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
27
20
|
"exports": {
|
|
28
21
|
".": {
|
|
29
22
|
"import": "./dist/index.js",
|
|
@@ -37,212 +30,37 @@
|
|
|
37
30
|
"LICENSE",
|
|
38
31
|
"README.md"
|
|
39
32
|
],
|
|
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
|
-
"#342cd29fa025": "./dist/ssh/server.js",
|
|
72
|
-
"#390741ebf5ab": "./dist/utils/paths.js",
|
|
73
|
-
"#3c8d8166992a": "./dist/types.js",
|
|
74
|
-
"#3fbd2c4f854c": "./dist/core/run_git/repository_setup.js",
|
|
75
|
-
"#40nx1s0ag764": "./dist/core/create_git_host/content_methods.js",
|
|
76
|
-
"#4159667f1e87": "./dist/core/create_git_host/content_methods.js",
|
|
77
|
-
"#42965357d713": "./dist/core/archive_cache_filesystem.js",
|
|
78
|
-
"#42f32dd5cd30": "./dist/core/operation_state.js",
|
|
79
|
-
"#4bb83a619bd3": "./dist/core/repository.js",
|
|
80
|
-
"#4c94c22378b2": "./dist/types/forge.js",
|
|
81
|
-
"#4e7ff1c92ff1": "./dist/api/handler/response.js",
|
|
82
|
-
"#53fe5bbf2789": "./dist/api/handler/action.js",
|
|
83
|
-
"#54sqm2cb0m84": "./dist/http/handler/helpers.js",
|
|
84
|
-
"#56r9dqq6ml7u": "./dist/core/archive/links.js",
|
|
85
|
-
"#58f5a76a572c": "./dist/core/run_git/env.js",
|
|
86
|
-
"#59b3abcebf1a": "./dist/types/host.js",
|
|
87
|
-
"#5a0e75b6bdb8": "./dist/types/common.js",
|
|
88
|
-
"#5a29135e56c1": "./dist/logging.js",
|
|
89
|
-
"#5b9hlx9mpezy": "./dist/api/handler/route.js",
|
|
90
|
-
"#5f2400e3636a": "./dist/api/handler.js",
|
|
91
|
-
"#5f5fe2262a26": "./dist/core/inspect/linguist_progress.js",
|
|
92
|
-
"#5ubr402iaw9c": "./dist/types/forge/workflows.js",
|
|
93
|
-
"#61bf255baf35": "./dist/core/inspect/helpers.js",
|
|
94
|
-
"#622bd171bea7": "./dist/core/run_git/process.js",
|
|
95
|
-
"#62f869522d1f": "./dist/utils/text.js",
|
|
96
|
-
"#632ac808a058": "./dist/core/inspect.js",
|
|
97
|
-
"#666a84ce027e": "./dist/types/repository.js",
|
|
98
|
-
"#66ac2545b926": "./dist/core/working_tree/mutate.js",
|
|
99
|
-
"#68c5a1845ad6": "./dist/core/working_tree/shared.js",
|
|
100
|
-
"#6fxc5ur8a90x": "./dist/core/actions/expressions.js",
|
|
101
|
-
"#6ncl68plbm7u": "./dist/core/create/git/forge/context.js",
|
|
102
|
-
"#6qp108ftbm6e": "./dist/core/remote.js",
|
|
103
|
-
"#71gcz975lbgv": "./dist/ssh/keys.js",
|
|
104
|
-
"#7bfy3ou33f74": "./dist/core/inspect/tree_blob.js",
|
|
105
|
-
"#7maf6oi3wbka": "./dist/core/working_tree/shared.js",
|
|
106
|
-
"#7nhhgv65uln6": "./dist/types/forge/workflows/runs.js",
|
|
107
|
-
"#87337d1a79d6": "./dist/backend/utils/time.js",
|
|
108
|
-
"#8974ac53d713": "./dist/errors.js",
|
|
109
|
-
"#8b0f4b678e79": "./dist/core/working_tree.js",
|
|
110
|
-
"#8o3yz0lxs93r": "./dist/core/actions/sandbox.js",
|
|
111
|
-
"#8um0tm4l4cve": "./dist/types/repository.js",
|
|
112
|
-
"#90040fe3e934": "./dist/core/locks.js",
|
|
113
|
-
"#92b2mrh7s066": "./dist/core/create_git_host/shared.js",
|
|
114
|
-
"#96b00569f1f4": "./dist/core/run_git.js",
|
|
115
|
-
"#9ed9deeef558": "./dist/core/working_tree/read.js",
|
|
116
|
-
"#9eedb3d763ad": "./dist/ssh/server/shared.js",
|
|
117
|
-
"#9q68yjsq648z": "./dist/core/create/git/forge/fork_methods.js",
|
|
118
|
-
"#9u61u8i5q24v": "./dist/core/actions/go_runner.js",
|
|
119
|
-
"#9wiq1v1nlp1y": "./dist/core/run_git/process.js",
|
|
120
|
-
"#a08ndk3v0tpm": "./dist/core/locks.js",
|
|
121
|
-
"#a62e56e1fef5": "./dist/core/inspection.js",
|
|
122
|
-
"#a9f1d698c0aa": "./dist/core/create_git_host/remote_methods.js",
|
|
123
|
-
"#arhpamot5o19": "./dist/core/forge_actions/runtime/job/execute.js",
|
|
124
|
-
"#atvdoorwcqy9": "./dist/core/actions/redaction.js",
|
|
125
|
-
"#b2abc9887206": "./dist/ssh/server/audit.js",
|
|
126
|
-
"#b3a8e61c79e9": "./dist/core/create_git_host/shared.js",
|
|
127
|
-
"#b48819617d2f": "./dist/api/handler/route.js",
|
|
128
|
-
"#b8c8814b833e": "./dist/core/create/git/host.js",
|
|
129
|
-
"#bpzwkfv6xs0t": "./dist/types/repository/inspection.js",
|
|
130
|
-
"#c471wkla2eun": "./dist/ssh/server.js",
|
|
131
|
-
"#c4fd5905235f": "./dist/api/forge/handler.js",
|
|
132
|
-
"#c786ov8v2bxc": "./dist/core/inspection/snapshots.js",
|
|
133
|
-
"#cecx4kvnm1f7": "./dist/api/socket/linguist_connection.js",
|
|
134
|
-
"#cqgsder5zlmf": "./dist/logging.js",
|
|
135
|
-
"#cy6v1a95e1nj": "./dist/core/create/git/forge/shared.js",
|
|
136
|
-
"#d66a914eb693": "./dist/backend/utils/object.js",
|
|
137
|
-
"#d6wpchhjd0b8": "./dist/core/create/git/forge/base_methods.js",
|
|
138
|
-
"#d7cs7wdmybuf": "./dist/core/operation_state.js",
|
|
139
|
-
"#d8b5p2m18xp0": "./dist/ssh/server/audit.js",
|
|
140
|
-
"#d9837iy4dizi": "./dist/core/forge_actions/runtime/run/execute.js",
|
|
141
|
-
"#daa89828a013": "./dist/http/handler.js",
|
|
142
|
-
"#dcskww2v23pn": "./dist/core/inspection/target.js",
|
|
143
|
-
"#de031fc6c08f": "./dist/core/create_git_host/working_tree_methods.js",
|
|
144
|
-
"#e1ead083c558": "./dist/api/socket/events.js",
|
|
145
|
-
"#e65e172ffada": "./dist/core/git_forge/storage_memory.js",
|
|
146
|
-
"#e8559447ec5f": "./dist/api/forge/route.js",
|
|
147
|
-
"#ea71f5c6858f": "./dist/core/create/git/forge.js",
|
|
148
|
-
"#ebe51631bc41": "./dist/backend/utils/normalize.js",
|
|
149
|
-
"#ebw9yuqcyi9w": "./dist/errors.js",
|
|
150
|
-
"#eg5ivjfdofea": "./dist/types/repository/archive.js",
|
|
151
|
-
"#em04rd6pxc0h": "./dist/api/forge/socket_subscription.js",
|
|
152
|
-
"#evdr4zn4ntk5": "./dist/core/actions/planner.js",
|
|
153
|
-
"#f88802286a5d": "./dist/core/create_git_host/branch_methods.js",
|
|
154
|
-
"#f8p17v0habtt": "./dist/core/create/git/host.js",
|
|
155
|
-
"#fb997ea04aaa": "./dist/http/handler/helpers.js",
|
|
156
|
-
"#fcd73bf294d5": "./dist/index.js",
|
|
157
|
-
"#ff0a1cf158cf": "./dist/api/handler/archive.js",
|
|
158
|
-
"#fj1qleiu5gwr": "./dist/core/archive/commit.js",
|
|
159
|
-
"#fznhyzk6jqlm": "./dist/types/forge/social_forks.js",
|
|
160
|
-
"#g3n8cscehpt3": "./dist/types/forge/releases.js",
|
|
161
|
-
"#gagsdioegzgz": "./dist/core/inspect/linguist_progress.js",
|
|
162
|
-
"#gc1rzxkbhrqu": "./dist/core/forge_actions/shared.js",
|
|
163
|
-
"#gkuebd5oq0gi": "./dist/core/inspection/shared.js",
|
|
164
|
-
"#glky615nezhr": "./dist/api/routing.js",
|
|
165
|
-
"#gvc0petxh683": "./dist/core/actions/expressions/read.js",
|
|
166
|
-
"#gzjgum0vj7q8": "./dist/core/forge_actions/runtime_support.js",
|
|
167
|
-
"#h03o1plsdntl": "./dist/core/inspection.js",
|
|
168
|
-
"#hl8dc1r0tmsl": "./dist/types/forge.js",
|
|
169
|
-
"#hp0eb3dl2y72": "./dist/core/create_git_host/working_tree_methods.js",
|
|
170
|
-
"#hzv9f3wx9ez9": "./dist/core/actions/types.js",
|
|
171
|
-
"#iqv5bm36ifxa": "./dist/types/repository/core.js",
|
|
172
|
-
"#j29gfnt2cscg": "./dist/backend/utils/object.js",
|
|
173
|
-
"#j5v2l229yjdx": "./dist/http/handler.js",
|
|
174
|
-
"#jamvqagbwp1m": "./dist/core/git_forge/storage_memory/actions.js",
|
|
175
|
-
"#jdf1x3hps0q6": "./dist/ssh/server/shared.js",
|
|
176
|
-
"#jdobo8z493b0": "./dist/core/git_forge/storage_memory/state.js",
|
|
177
|
-
"#jezxo0dsbb92": "./dist/core/run_git.js",
|
|
178
|
-
"#jj32iy54c0ja": "./dist/core/actions/normalize/shared.js",
|
|
179
|
-
"#jqgobsuocqzv": "./dist/types/forge/workflows/actions.js",
|
|
180
|
-
"#judnc6y787h1": "./dist/core/archive/resolve.js",
|
|
181
|
-
"#k7bnrk9kvbou": "./dist/core/create_git_host/remote_methods.js",
|
|
182
|
-
"#k81h7irc7p0e": "./dist/api/socket/events.js",
|
|
183
|
-
"#kc0q88869msa": "./dist/core/inspect/linguist.js",
|
|
184
|
-
"#koj1e88fmnpf": "./dist/core/forge_actions/runtime/api.js",
|
|
185
|
-
"#lguymz6xjg6n": "./dist/core/inspect/shared.js",
|
|
186
|
-
"#lobn9mfldn9s": "./dist/core/create_git_host/branch_methods.js",
|
|
187
|
-
"#naqqpl7gjad2": "./dist/core/inspection/analysis.js",
|
|
188
|
-
"#nj0t6f5vyy3x": "./dist/core/actions/workflows.js",
|
|
189
|
-
"#nnmpf5y1bu1f": "./dist/core/actions/expressions/types.js",
|
|
190
|
-
"#no8h9g0tsskh": "./dist/api/forge/route.js",
|
|
191
|
-
"#o538xjjiyf7m": "./dist/core/actions/node_runner.js",
|
|
192
|
-
"#oflnw936obpy": "./dist/core/forge_actions/runtime/types.js",
|
|
193
|
-
"#ou37dzhvdfbw": "./dist/core/create/git/forge/social_methods.js",
|
|
194
|
-
"#oul7o8qvkv5n": "./dist/api/handler/response.js",
|
|
195
|
-
"#p2jpecxpp3dh": "./dist/api/forge/actions/run.js",
|
|
196
|
-
"#p59wo2ccziqp": "./dist/core/inspect/icon_theme.js",
|
|
197
|
-
"#pgt3n58dubd8": "./dist/core/archive/shared.js",
|
|
198
|
-
"#pj4g6du01gys": "./dist/core/actions/runner.js",
|
|
199
|
-
"#pl0z91xbe0br": "./dist/core/git_forge/storage_memory.js",
|
|
200
|
-
"#pvpm4i6ibun0": "./dist/api/forge/actions.js",
|
|
201
|
-
"#qqqsbhnm9zbd": "./dist/core/forge_actions/runtime/queue.js",
|
|
202
|
-
"#r89qhx6c8mkf": "./dist/constants.js",
|
|
203
|
-
"#raiyak36g4hu": "./dist/core/inspect/search_archive.js",
|
|
204
|
-
"#rbszg8l3vatn": "./dist/core/inspect/history.js",
|
|
205
|
-
"#rfvjfxzebkbs": "./dist/index.js",
|
|
206
|
-
"#ri04lg8htjzc": "./dist/core/archive/context.js",
|
|
207
|
-
"#rifbqbjmjgxy": "./dist/types/forge/activity.js",
|
|
208
|
-
"#rl6fo497d2h3": "./dist/core/actions/artifacts.js",
|
|
209
|
-
"#rlvv6s65veqm": "./dist/core/forge_actions/job/steps.js",
|
|
210
|
-
"#s5xnfed966ax": "./dist/core/archive_cache_filesystem.js",
|
|
211
|
-
"#s77f1g5nua7x": "./dist/core/forge_actions/runtime/engine.js",
|
|
212
|
-
"#s8923hsovdu5": "./dist/core/create/git/forge/release_methods.js",
|
|
213
|
-
"#sjt3cblinnps": "./dist/core/forge_actions/runtime/job/step/execute.js",
|
|
214
|
-
"#sobhnglw5uqi": "./dist/core/actions/runner/launch.js",
|
|
215
|
-
"#spcbfsrikbhn": "./dist/core/repository/parsers.js",
|
|
216
|
-
"#sq8yibjyv8kv": "./dist/core/archive/open.js",
|
|
217
|
-
"#stucx8966x3k": "./dist/api/socket/server.js",
|
|
218
|
-
"#swop6c7l95hf": "./dist/types/host/options.js",
|
|
219
|
-
"#sy81xkgkmoa0": "./dist/utils/text.js",
|
|
220
|
-
"#t13y2bx0ygbf": "./dist/api/handler/action.js",
|
|
221
|
-
"#tb3z4kq3oxg0": "./dist/types/host.js",
|
|
222
|
-
"#tda3gxsxcw11": "./dist/core/actions/environment.js",
|
|
223
|
-
"#tmq4zcm4k2dj": "./dist/api/forge/handler.js",
|
|
224
|
-
"#tn00pgmqt7n3": "./dist/types/forge/api.js",
|
|
225
|
-
"#tpqgs6k0dlv3": "./dist/core/actions/normalize/finalize.js",
|
|
226
|
-
"#txvbmmadpffo": "./dist/api/forge/socket.js",
|
|
227
|
-
"#upm272dycvnm": "./dist/types/common.js",
|
|
228
|
-
"#uzarbapld5e4": "./dist/core/working_tree/read.js",
|
|
229
|
-
"#v78uc4qt1lhk": "./dist/core/archive/read.js",
|
|
230
|
-
"#w1qvcntb0avm": "./dist/core/actions/expressions/tokenize.js",
|
|
231
|
-
"#w41mbb2gyzu1": "./dist/types/host/service.js",
|
|
232
|
-
"#wb5qec2x6c0t": "./dist/backend/utils/normalize.js",
|
|
233
|
-
"#wqa424xadbcd": "./dist/core/archive/generation.js",
|
|
234
|
-
"#wy8z5vow2aix": "./dist/types/index.js",
|
|
235
|
-
"#x2bn6ub493ck": "./dist/core/actions/local_runner.js",
|
|
236
|
-
"#x78lbcvwod9s": "./dist/core/working_tree.js",
|
|
237
|
-
"#xg7vpiql11ra": "./dist/api/handler.js",
|
|
238
|
-
"#xq931dajvvlo": "./dist/core/inspect/helpers.js",
|
|
239
|
-
"#xtrl4j08py78": "./dist/core/run_git/env.js",
|
|
240
|
-
"#yip4ahplpvfl": "./dist/core/inspect.js",
|
|
241
|
-
"#ynrrpw9yaztf": "./dist/utils/paths.js",
|
|
242
|
-
"#yotdvtav6ika": "./dist/core/activity.js",
|
|
243
|
-
"#z00j1lfq4mcb": "./dist/api/handler/runtime.js",
|
|
244
|
-
"#z6fwaix07pum": "./dist/core/inspection/tree.js",
|
|
245
|
-
"#zwhym49orp46": "./dist/core/create/git/forge.js"
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build": "bun run prepare:generated && rm -rf dist && tsc -p tsconfig.build.json && bun ./scripts/prepare-dist.mjs prepare-dist",
|
|
35
|
+
"build:runner": "bun run prepare:generated && bun ./scripts/build/runner.mjs",
|
|
36
|
+
"build:runner:matrix": "bun ./scripts/build/runner-matrix.mjs",
|
|
37
|
+
"demo": "bun run examples/dummy.ts",
|
|
38
|
+
"demo:api": "bun run examples/api_server.ts",
|
|
39
|
+
"demo:http": "bun run examples/http_server.ts",
|
|
40
|
+
"demo:ssh": "bun run examples/ssh_server.ts",
|
|
41
|
+
"postpack": "bun ./scripts/prepare-dist.mjs postpack",
|
|
42
|
+
"prepack": "bun run build && bun ./scripts/prepare-dist.mjs prepack",
|
|
43
|
+
"prepublishOnly": "bun run typecheck && bun run verify:pack",
|
|
44
|
+
"prepare:generated": "bun ./scripts/build/generated/tsconfig.mjs",
|
|
45
|
+
"typecheck": "bun run prepare:generated && tsc --noEmit",
|
|
46
|
+
"verify:pack": "bun ./scripts/verify-pack.mjs"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@package/logger-adapter": "npm:@trebired/logger-adapter@^0.2.11",
|
|
50
|
+
"@package/result": "npm:@trebired/result@^1.1.4",
|
|
51
|
+
"js-yaml": "^4.1.1",
|
|
52
|
+
"linguist-js": "^3.0.0",
|
|
53
|
+
"material-icon-theme": "^5.35.0",
|
|
54
|
+
"socket.io": "^4.8.3",
|
|
55
|
+
"ssh2": "^1.17.0"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@trebired/code-discipline": "^4.9.2",
|
|
59
|
+
"@types/bun": "^1.3.4",
|
|
60
|
+
"@types/node": "^24.10.1",
|
|
61
|
+
"@types/ssh2": "^1.15.5",
|
|
62
|
+
"socket.io-client": "^4.8.3",
|
|
63
|
+
"typescript": "^6.0.2"
|
|
246
64
|
},
|
|
247
65
|
"keywords": [
|
|
248
66
|
"git",
|
|
@@ -252,37 +70,17 @@
|
|
|
252
70
|
"backend",
|
|
253
71
|
"actions",
|
|
254
72
|
"automation",
|
|
255
|
-
"node",
|
|
256
73
|
"bun"
|
|
257
74
|
],
|
|
258
|
-
"license": "AGPL-3.0-only",
|
|
259
|
-
"main": "./dist/index.js",
|
|
260
|
-
"name": "@trebired/git-host",
|
|
261
|
-
"packageManager": "bun@1.3.12",
|
|
262
|
-
"private": false,
|
|
263
|
-
"publishConfig": {
|
|
264
|
-
"access": "public"
|
|
265
|
-
},
|
|
266
75
|
"repository": {
|
|
267
76
|
"type": "git",
|
|
268
77
|
"url": "https://github.com/Trebired/git-host"
|
|
269
78
|
},
|
|
270
|
-
"
|
|
271
|
-
|
|
272
|
-
"
|
|
273
|
-
"build:runner:matrix": "node ./scripts/build/runner-matrix.mjs",
|
|
274
|
-
"demo": "bun run examples/dummy.ts",
|
|
275
|
-
"demo:api": "bun run examples/api_server.ts",
|
|
276
|
-
"demo:http": "bun run examples/http_server.ts",
|
|
277
|
-
"demo:ssh": "bun run examples/ssh_server.ts",
|
|
278
|
-
"postpack": "node ./scripts/prepare-dist.mjs postpack",
|
|
279
|
-
"prepack": "bun run build && node ./scripts/prepare-dist.mjs prepack",
|
|
280
|
-
"prepublishOnly": "bun run typecheck && bun test && bun run build",
|
|
281
|
-
"test": "bun test",
|
|
282
|
-
"typecheck": "tsc --noEmit",
|
|
283
|
-
"verify:pack": "node ./scripts/verify-pack.mjs"
|
|
79
|
+
"homepage": "https://github.com/Trebired/git-host#readme",
|
|
80
|
+
"bugs": {
|
|
81
|
+
"url": "https://github.com/Trebired/git-host/issues"
|
|
284
82
|
},
|
|
285
|
-
"
|
|
286
|
-
|
|
287
|
-
|
|
83
|
+
"publishConfig": {
|
|
84
|
+
"access": "public"
|
|
85
|
+
}
|
|
288
86
|
}
|