@gitdocket/bin-darwin-arm64 0.0.0 → 0.4.1

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/BUILD.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "version": "0.4.1",
3
+ "target": "darwin-arm64",
4
+ "bunVersion": "1.3.14",
5
+ "source": {
6
+ "kind": "public-export",
7
+ "commit": "41177452c66f798ed297f7ce3dd8f39fa88d3dec",
8
+ "exportSha256": "23aa8f14a3fd5b7e2a84155f342a7e85b20ee6de2c90ea85deb2822750e3a989"
9
+ }
10
+ }
@@ -0,0 +1,223 @@
1
+ Bun itself is MIT-licensed.
2
+
3
+ ## JavaScriptCore
4
+
5
+ Bun statically links JavaScriptCore (and WebKit) which is LGPL-2 licensed. WebCore files from WebKit are also licensed under LGPL2. Per LGPL2:
6
+
7
+ > (1) If you statically link against an LGPL’d library, you must also provide your application in an object (not necessarily source) format, so that a user has the opportunity to modify the library and relink the application.
8
+
9
+ You can find the patched version of WebKit used by Bun here: <https://github.com/oven-sh/webkit>. If you would like to relink Bun with changes:
10
+
11
+ - `git submodule update --init --recursive`
12
+ - `make jsc`
13
+ - `zig build`
14
+
15
+ This compiles JavaScriptCore, compiles Bun’s `.cpp` bindings for JavaScriptCore (which are the object files using JavaScriptCore) and outputs a new `bun` binary with your changes.
16
+
17
+ ## Linked libraries
18
+
19
+ Bun statically links these libraries:
20
+
21
+ | Library | License |
22
+ |---------|---------|
23
+ | [`boringssl`](https://boringssl.googlesource.com/boringssl/) | [several licenses](https://boringssl.googlesource.com/boringssl/+/refs/heads/master/LICENSE) |
24
+ | [`brotli`](https://github.com/google/brotli) | MIT |
25
+ | [`libarchive`](https://github.com/libarchive/libarchive) | [several licenses](https://github.com/libarchive/libarchive/blob/master/COPYING) |
26
+ | [`lol-html`](https://github.com/cloudflare/lol-html/tree/master/c-api) | BSD 3-Clause |
27
+ | [`ls-hpack`](https://github.com/litespeedtech/ls-hpack) | MIT |
28
+ | [`ls-qpack`](https://github.com/litespeedtech/ls-qpack) | MIT |
29
+ | [`lsquic`](https://github.com/litespeedtech/lsquic) | MIT (portions derived from [Chromium proto-quic](https://github.com/litespeedtech/lsquic/blob/master/LICENSE.chrome), BSD 3-Clause) |
30
+ | [`mimalloc`](https://github.com/microsoft/mimalloc) | MIT |
31
+ | [`picohttp`](https://github.com/h2o/picohttpparser) | dual-licensed under the Perl License or the MIT License |
32
+ | [`zstd`](https://github.com/facebook/zstd) | dual-licensed under the BSD License or GPLv2 license |
33
+ | [`simdutf`](https://github.com/simdutf/simdutf) | Apache 2.0 |
34
+ | [`tinycc`](https://github.com/tinycc/tinycc) | LGPL v2.1 |
35
+ | [`uSockets`](https://github.com/uNetworking/uSockets) | Apache 2.0 |
36
+ | [`zlib-ng`](https://github.com/zlib-ng/zlib-ng) | zlib |
37
+ | [`c-ares`](https://github.com/c-ares/c-ares) | MIT licensed |
38
+ | [`libicu`](https://github.com/unicode-org/icu) 72 | [license here](https://github.com/unicode-org/icu/blob/main/icu4c/LICENSE) |
39
+ | [`libbase64`](https://github.com/aklomp/base64/blob/master/LICENSE) | BSD 2-Clause |
40
+ | [`libuv`](https://github.com/libuv/libuv) (on Windows) | MIT |
41
+ | [`libdeflate`](https://github.com/ebiggers/libdeflate) | MIT |
42
+ | [`libjpeg-turbo`](https://github.com/libjpeg-turbo/libjpeg-turbo) | [BSD 3-Clause / IJG / zlib](https://github.com/libjpeg-turbo/libjpeg-turbo/blob/main/LICENSE.md) |
43
+ | [`libspng`](https://github.com/randy408/libspng) | BSD 2-Clause |
44
+ | [`libwebp`](https://github.com/webmproject/libwebp) | BSD 3-Clause |
45
+ | [`highway`](https://github.com/google/highway) | Apache 2.0 |
46
+ | [`uucode`](https://github.com/jacobsandlund/uucode) | MIT |
47
+ | A fork of [`uWebsockets`](https://github.com/jarred-sumner/uwebsockets) | Apache 2.0 licensed |
48
+ | Parts of [Tigerbeetle's IO code](https://github.com/tigerbeetle/tigerbeetle/blob/532c8b70b9142c17e07737ab6d3da68d7500cbca/src/io/windows.zig#L1) | Apache 2.0 licensed |
49
+ | `__cxa_thread_atexit` fallback from [LLVM libc++abi](https://github.com/llvm/llvm-project/blob/llvmorg-19.1.0/libcxxabi/src/cxa_thread_atexit.cpp) | Apache 2.0 with LLVM exception |
50
+
51
+ ## Polyfills
52
+
53
+ For compatibility reasons, the following packages are embedded into Bun's binary and injected if imported.
54
+
55
+ | Package | License |
56
+ |---------|---------|
57
+ | [`assert`](https://npmjs.com/package/assert) | MIT |
58
+ | [`browserify-zlib`](https://npmjs.com/package/browserify-zlib) | MIT |
59
+ | [`buffer`](https://npmjs.com/package/buffer) | MIT |
60
+ | [`constants-browserify`](https://npmjs.com/package/constants-browserify) | MIT |
61
+ | [`crypto-browserify`](https://npmjs.com/package/crypto-browserify) | MIT |
62
+ | [`domain-browser`](https://npmjs.com/package/domain-browser) | MIT |
63
+ | [`events`](https://npmjs.com/package/events) | MIT |
64
+ | [`https-browserify`](https://npmjs.com/package/https-browserify) | MIT |
65
+ | [`os-browserify`](https://npmjs.com/package/os-browserify) | MIT |
66
+ | [`path-browserify`](https://npmjs.com/package/path-browserify) | MIT |
67
+ | [`process`](https://npmjs.com/package/process) | MIT |
68
+ | [`punycode`](https://npmjs.com/package/punycode) | MIT |
69
+ | [`querystring-es3`](https://npmjs.com/package/querystring-es3) | MIT |
70
+ | [`stream-browserify`](https://npmjs.com/package/stream-browserify) | MIT |
71
+ | [`stream-http`](https://npmjs.com/package/stream-http) | MIT |
72
+ | [`string_decoder`](https://npmjs.com/package/string_decoder) | MIT |
73
+ | [`timers-browserify`](https://npmjs.com/package/timers-browserify) | MIT |
74
+ | [`tty-browserify`](https://npmjs.com/package/tty-browserify) | MIT |
75
+ | [`url`](https://npmjs.com/package/url) | MIT |
76
+ | [`util`](https://npmjs.com/package/util) | MIT |
77
+ | [`vm-browserify`](https://npmjs.com/package/vm-browserify) | MIT |
78
+
79
+ ## Additional credits
80
+
81
+ - Bun's JS transpiler, CSS lexer, and Node.js module resolver source code is a Zig port of [@evanw](https://github.com/evanw)’s [esbuild](https://github.com/evanw/esbuild) project.
82
+ - Credit to [@kipply](https://github.com/kipply) for the name "Bun"!
83
+
84
+ @biomejs/biome@2.5.11 (MIT OR Apache-2.0)
85
+
86
+
87
+ ---
88
+
89
+ @modelcontextprotocol/sdk@1.30.0 (MIT)
90
+ MIT License
91
+
92
+ Copyright (c) 2024 Anthropic, PBC
93
+
94
+ Permission is hereby granted, free of charge, to any person obtaining a copy
95
+ of this software and associated documentation files (the "Software"), to deal
96
+ in the Software without restriction, including without limitation the rights
97
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
98
+ copies of the Software, and to permit persons to whom the Software is
99
+ furnished to do so, subject to the following conditions:
100
+
101
+ The above copyright notice and this permission notice shall be included in all
102
+ copies or substantial portions of the Software.
103
+
104
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
105
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
106
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
107
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
108
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
109
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
110
+ SOFTWARE.
111
+
112
+
113
+ ---
114
+
115
+ @types/bun@1.3.14 (MIT)
116
+ MIT License
117
+
118
+ Copyright (c) Microsoft Corporation.
119
+
120
+ Permission is hereby granted, free of charge, to any person obtaining a copy
121
+ of this software and associated documentation files (the "Software"), to deal
122
+ in the Software without restriction, including without limitation the rights
123
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
124
+ copies of the Software, and to permit persons to whom the Software is
125
+ furnished to do so, subject to the following conditions:
126
+
127
+ The above copyright notice and this permission notice shall be included in all
128
+ copies or substantial portions of the Software.
129
+
130
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
131
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
132
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
133
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
134
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
135
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
136
+ SOFTWARE
137
+
138
+
139
+ ---
140
+
141
+ typescript@5.9.3 (Apache-2.0)
142
+ Apache License
143
+
144
+ Version 2.0, January 2004
145
+
146
+ http://www.apache.org/licenses/
147
+
148
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
149
+
150
+ 1. Definitions.
151
+
152
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
153
+
154
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
155
+
156
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
157
+
158
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
159
+
160
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
161
+
162
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
163
+
164
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
165
+
166
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
167
+
168
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
169
+
170
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
171
+
172
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
173
+
174
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
175
+
176
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
177
+
178
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
179
+
180
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
181
+
182
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
183
+
184
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
185
+
186
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
187
+
188
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
189
+
190
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
191
+
192
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
193
+
194
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
195
+
196
+ END OF TERMS AND CONDITIONS
197
+
198
+
199
+ ---
200
+
201
+ zod@4.5.4 (MIT)
202
+ MIT License
203
+
204
+ Copyright (c) 2025 Colin McDonnell
205
+
206
+ Permission is hereby granted, free of charge, to any person obtaining a copy
207
+ of this software and associated documentation files (the "Software"), to deal
208
+ in the Software without restriction, including without limitation the rights
209
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
210
+ copies of the Software, and to permit persons to whom the Software is
211
+ furnished to do so, subject to the following conditions:
212
+
213
+ The above copyright notice and this permission notice shall be included in all
214
+ copies or substantial portions of the Software.
215
+
216
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
217
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
218
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
219
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
220
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
221
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
222
+ SOFTWARE.
223
+
package/bin/docket ADDED
@@ -0,0 +1,4 @@
1
+ [diffend] Oversized file quarantined before diffing.
2
+ name: package/bin/docket
3
+ size: 65278946 bytes
4
+ sha256: 98b263001a7192e6e4a6b5c3d02bd857e5156a54c623d931c8aeae5fd83060a0
package/bin/docket-mcp ADDED
@@ -0,0 +1,4 @@
1
+ [diffend] Oversized file quarantined before diffing.
2
+ name: package/bin/docket-mcp
3
+ size: 64882658 bytes
4
+ sha256: 47ceb29ff90462d93d4dc091c518ad1c4f4a043ba328aa24c36261b04eff96c9
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gitdocket/bin-darwin-arm64",
3
- "version": "0.0.0",
4
- "description": "Ownership bootstrap for GitDocket standalone distribution; contains no executable.",
3
+ "version": "0.4.1",
4
+ "description": "GitDocket standalone commands for darwin-arm64.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -9,12 +9,25 @@
9
9
  "directory": "packages/bin-darwin-arm64"
10
10
  },
11
11
  "homepage": "https://gitdocket.com",
12
+ "os": [
13
+ "darwin"
14
+ ],
15
+ "cpu": [
16
+ "arm64"
17
+ ],
12
18
  "files": [
13
- "README.md",
14
- "LICENSE"
19
+ "bin",
20
+ "BUILD.json",
21
+ "LICENSE",
22
+ "THIRD_PARTY_NOTICES.txt"
15
23
  ],
16
24
  "publishConfig": {
17
25
  "access": "public",
18
- "tag": "bootstrap"
26
+ "registry": "https://registry.npmjs.org/"
27
+ },
28
+ "gitdocketSource": {
29
+ "kind": "public-export",
30
+ "commit": "41177452c66f798ed297f7ce3dd8f39fa88d3dec",
31
+ "exportSha256": "23aa8f14a3fd5b7e2a84155f342a7e85b20ee6de2c90ea85deb2822750e3a989"
19
32
  }
20
33
  }
package/README.md DELETED
@@ -1,3 +0,0 @@
1
- # @gitdocket/bin-darwin-arm64
2
-
3
- This 0.0.0 package establishes ownership and trusted publishing for GitDocket standalone releases. It contains no executable, dependencies or install scripts and is not an installable GitDocket release. Use the qualified 0.4.0 release or later through `@gitdocket/cli` and `@gitdocket/mcp` after those versions are published.