@endevco/aube-darwin-arm64 1.0.0-beta.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/README.md ADDED
@@ -0,0 +1,258 @@
1
+ <p align="center">
2
+ <a href="https://aube.en.dev">
3
+ <img src="assets/logo.svg" alt="aube logo" width="140" height="140">
4
+ </a>
5
+ </p>
6
+
7
+ <h1 align="center">aube</h1>
8
+
9
+ <p align="center">
10
+ A fast Node.js package manager that drops into existing projects.
11
+ </p>
12
+
13
+ <p align="center">
14
+ <strong>aube</strong> means dawn in French. Pronounced <code>/ob/</code>, like "ohb".
15
+ </p>
16
+
17
+ <p align="center">
18
+ <strong><a href="https://aube.en.dev">Read the docs</a></strong>
19
+ </p>
20
+
21
+ > [!WARNING]
22
+ > aube is beta software. It aims for compatibility with pnpm v11, but it has not been tested across many projects yet.
23
+
24
+ ## Why Try It
25
+
26
+ **[Fast installs](https://aube.en.dev/benchmarks).** Warm CI is about 7x faster than pnpm and 3x faster than Bun in the current benchmarks. Across the fixture set, aube runs up to ~22x faster than pnpm and up to 3x faster than Bun.
27
+
28
+ **[Existing lockfiles](https://aube.en.dev/package-manager/lockfiles).** Reads and writes `pnpm-lock.yaml`, `package-lock.json`, `npm-shrinkwrap.json`, `yarn.lock`, and `bun.lock` in place.
29
+
30
+ **[Cheap repeat commands](https://aube.en.dev/package-manager/scripts).** `aube run test`, `aube test`, and `aube exec vitest` auto-install when dependencies are stale, then skip that work when nothing changed.
31
+
32
+ **[Less disk use](https://aube.en.dev/package-manager/node-modules).** A global content-addressable store lets projects share package files instead of keeping a full copy of the same dependencies in every checkout.
33
+
34
+ **[Secure defaults](https://aube.en.dev/package-manager/configuration).** aube defaults to safer installs: new releases wait out a minimum age, exotic transitive dependencies are blocked, and dependency lifecycle scripts require approval.
35
+
36
+ ## Install
37
+
38
+ The recommended path is mise:
39
+
40
+ ```sh
41
+ mise use -g aube
42
+ ```
43
+
44
+ Check that it is on your `PATH`:
45
+
46
+ ```sh
47
+ aube --version
48
+ ```
49
+
50
+ Inside a project, you can also pin aube with mise:
51
+
52
+ ```sh
53
+ mise use aube
54
+ ```
55
+
56
+ aube is also published on npm:
57
+
58
+ ```sh
59
+ npm install -g @endevco/aube
60
+ ```
61
+
62
+ While aube is beta, Homebrew installs come from the Endev tap:
63
+
64
+ ```sh
65
+ brew install endevco/tap/aube
66
+ ```
67
+
68
+ See [other install methods](https://aube.en.dev/installation).
69
+
70
+ ## First Install
71
+
72
+ Run aube in an existing Node.js project:
73
+
74
+ ```sh
75
+ aube install
76
+ ```
77
+
78
+ If the project already has a supported lockfile, aube reads it and writes updates back to the same file. That makes it easy to try aube locally without forcing the rest of the team to switch package managers first.
79
+
80
+ For a new project with no lockfile, aube creates `aube-lock.yaml`.
81
+
82
+ ## Daily Commands
83
+
84
+ ```sh
85
+ aube install # install dependencies
86
+ aube add react # add a dependency
87
+ aube add -D vitest # add a dev dependency
88
+ aube remove react # remove a dependency
89
+ aube update # update dependencies within package.json ranges
90
+ aube run build # run a package.json script
91
+ aube test # run the test script, auto-installing first if needed
92
+ aube exec vitest # run a local binary
93
+ aube dlx cowsay hi # run a package in a throwaway environment
94
+ aube ci # clean, frozen install for CI
95
+ ```
96
+
97
+ You can also run scripts directly:
98
+
99
+ ```sh
100
+ aube dev
101
+ aube build
102
+ aube lint
103
+ ```
104
+
105
+ If the script exists in `package.json`, aube treats that as `aube run <script>`.
106
+
107
+ ### Shortcuts: `aubr` and `aubx`
108
+
109
+ `aubr` and `aubx` are multicall shims for `aube run` and `aube dlx`. They
110
+ share a binary with `aube` and dispatch purely on `argv[0]`, so every flag
111
+ that works on the full command also works on the shim:
112
+
113
+ ```sh
114
+ aubr build # aube run build
115
+ aubx cowsay hi # aube dlx cowsay hi
116
+ ```
117
+
118
+ The release archives ship all three binaries side by side; no extra
119
+ setup is needed when you install aube via mise or the tarball.
120
+
121
+ ## CI
122
+
123
+ Use `aube ci` when the lockfile must be treated as the source of truth:
124
+
125
+ ```sh
126
+ aube ci
127
+ ```
128
+
129
+ It removes `node_modules`, verifies the lockfile is fresh for the current `package.json`, then installs.
130
+
131
+ For Docker layers or workflows where you only want to update the lockfile:
132
+
133
+ ```sh
134
+ aube install --lockfile-only
135
+ ```
136
+
137
+ For production-only installs:
138
+
139
+ ```sh
140
+ aube install --prod
141
+ ```
142
+
143
+ ## Workspaces
144
+
145
+ aube supports workspace projects and the `workspace:` protocol.
146
+
147
+ ```sh
148
+ aube install -r
149
+ aube run test -r
150
+ aube add zod --filter @acme/api
151
+ ```
152
+
153
+ If a project already uses `pnpm-workspace.yaml`, aube can read and write it. New aube-first workspaces can use `aube-workspace.yaml`.
154
+
155
+ ## Lockfile Compatibility
156
+
157
+ | File | Reads | Writes in place |
158
+ | --- | --- | --- |
159
+ | `aube-lock.yaml` | yes | yes |
160
+ | `pnpm-lock.yaml` v9 | yes | yes |
161
+ | `package-lock.json` v2/v3 | yes | yes |
162
+ | `npm-shrinkwrap.json` | yes | yes |
163
+ | `yarn.lock` (v1 classic + v2+ berry) | yes | yes |
164
+ | `bun.lock` | yes | yes |
165
+
166
+ aube is not compatible with every historical lockfile shape. Older pnpm v5/v6 lockfiles should be upgraded with pnpm before switching. Yarn PnP projects need to move to a `node_modules` linker first — aube writes `node_modules`, not `.pnp.cjs`.
167
+
168
+ When more than one lockfile exists, prefer keeping one canonical lockfile for the project so teammates and CI do not fight over dependency state.
169
+
170
+ ## Dependency Scripts
171
+
172
+ aube skips dependency lifecycle scripts by default. That protects installs from unexpected build steps in transitive packages.
173
+
174
+ To allow packages that need build scripts:
175
+
176
+ ```sh
177
+ aube approve-builds
178
+ ```
179
+
180
+ You can inspect packages whose scripts were skipped:
181
+
182
+ ```sh
183
+ aube ignored-builds
184
+ ```
185
+
186
+ ## Package Layout
187
+
188
+ aube uses an isolated `node_modules` layout. Packages are linked through `node_modules/.aube/`, and package files are stored once in `$XDG_DATA_HOME/aube/store/` (defaulting to `~/.local/share/aube/store/`).
189
+
190
+ That means:
191
+
192
+ - several projects with similar dependencies share package files and use less disk space;
193
+ - dependencies stay isolated, so phantom dependencies are harder to rely on accidentally;
194
+ - repeated installs can reuse package files already on disk.
195
+
196
+ ## Commands You May Recognize
197
+
198
+ aube supports the common package-manager surface:
199
+
200
+ ```sh
201
+ aube list
202
+ aube why react
203
+ aube outdated
204
+ aube audit
205
+ aube pack
206
+ aube publish
207
+ aube link
208
+ aube unlink
209
+ aube config get registry
210
+ aube store path
211
+ aube store prune
212
+ ```
213
+
214
+ Some pnpm commands are intentionally out of scope. Runtime-management commands such as `env`, `runtime`, `setup`, and `self-update` belong in tools like mise. Registry account helpers such as `whoami`, `token`, `owner`, `search`, `pkg`, and `set-script` are compatibility stubs that point you to the npm command instead.
215
+
216
+ ## Learn More
217
+
218
+ - [Documentation](https://aube.en.dev)
219
+ - [Benchmarks](https://aube.en.dev/benchmarks)
220
+ - [Lockfile compatibility](https://aube.en.dev/package-manager/lockfiles)
221
+ - [Run scripts and binaries](https://aube.en.dev/package-manager/scripts)
222
+
223
+ ## CI
224
+
225
+ <p>
226
+ <a href="https://buildkite.com">
227
+ <img src="assets/buildkite-logo.svg" alt="Buildkite" width="180">
228
+ </a>
229
+ </p>
230
+
231
+ Thanks to [Buildkite](https://buildkite.com) for providing CI for aube.
232
+
233
+ ## Star History
234
+
235
+ <a href="https://www.star-history.com/?repos=endevco%2Faube&type=date&legend=top-left">
236
+ <picture>
237
+ <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/chart?repos=endevco/aube&type=date&theme=dark&legend=top-left" />
238
+ <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/chart?repos=endevco/aube&type=date&legend=top-left" />
239
+ <img alt="Star History Chart" src="https://api.star-history.com/chart?repos=endevco/aube&type=date&legend=top-left" />
240
+ </picture>
241
+ </a>
242
+
243
+ ## Contributors
244
+
245
+ [![Contributors](https://contrib.rocks/image?repo=endevco/aube)](https://github.com/endevco/aube/graphs/contributors)
246
+
247
+ <p>
248
+ <a href="https://en.dev">
249
+ <img src="https://github.com/endevco.png?size=96" alt="en.dev" width="42" height="42" align="left">
250
+ </a>
251
+ Built by <a href="https://en.dev">en.dev</a>.
252
+ </p>
253
+
254
+ <br clear="left">
255
+
256
+ ## License
257
+
258
+ MIT
package/bin/aube ADDED
Binary file
package/bin/aubr ADDED
Binary file
package/bin/aubx ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@endevco/aube-darwin-arm64",
3
+ "version": "1.0.0-beta.10",
4
+ "description": "Platform binaries for aube — do not install directly, see @endevco/aube.",
5
+ "homepage": "https://aube.en.dev",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/endevco/aube"
9
+ },
10
+ "license": "MIT",
11
+ "bin": {
12
+ "aube": "bin/aube",
13
+ "aubr": "bin/aubr",
14
+ "aubx": "bin/aubx"
15
+ },
16
+ "files": [
17
+ "bin",
18
+ "README.md"
19
+ ],
20
+ "os": [
21
+ "darwin"
22
+ ],
23
+ "cpu": [
24
+ "arm64"
25
+ ]
26
+ }