@endevco/aube-win32-x64 1.0.0-beta.2

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,242 @@
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 9x faster than pnpm and 3x faster than Bun in the current benchmarks. Across the fixture set, aube runs roughly 2-21x faster than pnpm and 1-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
+ See [other install methods](https://aube.en.dev/installation).
63
+
64
+ ## First Install
65
+
66
+ Run aube in an existing Node.js project:
67
+
68
+ ```sh
69
+ aube install
70
+ ```
71
+
72
+ 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.
73
+
74
+ For a new project with no lockfile, aube creates `aube-lock.yaml`.
75
+
76
+ ## Daily Commands
77
+
78
+ ```sh
79
+ aube install # install dependencies
80
+ aube add react # add a dependency
81
+ aube add -D vitest # add a dev dependency
82
+ aube remove react # remove a dependency
83
+ aube update # update dependencies within package.json ranges
84
+ aube run build # run a package.json script
85
+ aube test # run the test script, auto-installing first if needed
86
+ aube exec vitest # run a local binary
87
+ aube dlx cowsay hi # run a package in a throwaway environment
88
+ aube ci # clean, frozen install for CI
89
+ ```
90
+
91
+ You can also run scripts directly:
92
+
93
+ ```sh
94
+ aube dev
95
+ aube build
96
+ aube lint
97
+ ```
98
+
99
+ If the script exists in `package.json`, aube treats that as `aube run <script>`.
100
+
101
+ ### Shortcuts: `aubr` and `aubx`
102
+
103
+ `aubr` and `aubx` are multicall shims for `aube run` and `aube dlx`. They
104
+ share a binary with `aube` and dispatch purely on `argv[0]`, so every flag
105
+ that works on the full command also works on the shim:
106
+
107
+ ```sh
108
+ aubr build # aube run build
109
+ aubx cowsay hi # aube dlx cowsay hi
110
+ ```
111
+
112
+ The release archives ship all three binaries side by side; no extra
113
+ setup is needed when you install aube via mise or the tarball.
114
+
115
+ ## CI
116
+
117
+ Use `aube ci` when the lockfile must be treated as the source of truth:
118
+
119
+ ```sh
120
+ aube ci
121
+ ```
122
+
123
+ It removes `node_modules`, verifies the lockfile is fresh for the current `package.json`, then installs.
124
+
125
+ For Docker layers or workflows where you only want to update the lockfile:
126
+
127
+ ```sh
128
+ aube install --lockfile-only
129
+ ```
130
+
131
+ For production-only installs:
132
+
133
+ ```sh
134
+ aube install --prod
135
+ ```
136
+
137
+ ## Workspaces
138
+
139
+ aube supports workspace projects and the `workspace:` protocol.
140
+
141
+ ```sh
142
+ aube install -r
143
+ aube run test -r
144
+ aube add zod --filter @acme/api
145
+ ```
146
+
147
+ If a project already uses `pnpm-workspace.yaml`, aube can read and write it. New aube-first workspaces can use `aube-workspace.yaml`.
148
+
149
+ ## Lockfile Compatibility
150
+
151
+ | File | Reads | Writes in place |
152
+ | --- | --- | --- |
153
+ | `aube-lock.yaml` | yes | yes |
154
+ | `pnpm-lock.yaml` v9 | yes | yes |
155
+ | `package-lock.json` v2/v3 | yes | yes |
156
+ | `npm-shrinkwrap.json` | yes | yes |
157
+ | `yarn.lock` v1 | yes | yes |
158
+ | `bun.lock` | yes | yes |
159
+
160
+ aube is not compatible with every historical lockfile shape. Older pnpm v5/v6 lockfiles should be upgraded with pnpm before switching, and Yarn Berry/PnP projects may need to stay on Yarn or migrate first.
161
+
162
+ When more than one lockfile exists, prefer keeping one canonical lockfile for the project so teammates and CI do not fight over dependency state.
163
+
164
+ ## Dependency Scripts
165
+
166
+ aube skips dependency lifecycle scripts by default. That protects installs from unexpected build steps in transitive packages.
167
+
168
+ To allow packages that need build scripts:
169
+
170
+ ```sh
171
+ aube approve-builds
172
+ ```
173
+
174
+ You can inspect packages whose scripts were skipped:
175
+
176
+ ```sh
177
+ aube ignored-builds
178
+ ```
179
+
180
+ ## Package Layout
181
+
182
+ aube uses an isolated `node_modules` layout. Packages are linked through `node_modules/.aube/`, and package files are stored once in `~/.aube-store/`.
183
+
184
+ That means:
185
+
186
+ - several projects with similar dependencies share package files and use less disk space;
187
+ - dependencies stay isolated, so phantom dependencies are harder to rely on accidentally;
188
+ - repeated installs can reuse package files already on disk.
189
+
190
+ ## Commands You May Recognize
191
+
192
+ aube supports the common package-manager surface:
193
+
194
+ ```sh
195
+ aube list
196
+ aube why react
197
+ aube outdated
198
+ aube audit
199
+ aube pack
200
+ aube publish
201
+ aube link
202
+ aube unlink
203
+ aube config get registry
204
+ aube store path
205
+ aube store prune
206
+ ```
207
+
208
+ 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.
209
+
210
+ ## Learn More
211
+
212
+ - [Documentation](https://aube.en.dev)
213
+ - [Benchmarks](https://aube.en.dev/benchmarks)
214
+ - [Lockfile compatibility](https://aube.en.dev/package-manager/lockfiles)
215
+ - [Run scripts and binaries](https://aube.en.dev/package-manager/scripts)
216
+
217
+ ## CI
218
+
219
+ <p>
220
+ <a href="https://buildkite.com">
221
+ <img src="assets/buildkite-logo.svg" alt="Buildkite" width="180">
222
+ </a>
223
+ </p>
224
+
225
+ Thanks to [Buildkite](https://buildkite.com) for providing CI for aube.
226
+
227
+ ## Contributors
228
+
229
+ [![Contributors](https://contrib.rocks/image?repo=endevco/aube)](https://github.com/endevco/aube/graphs/contributors)
230
+
231
+ <p>
232
+ <a href="https://en.dev">
233
+ <img src="https://github.com/endevco.png?size=96" alt="en.dev" width="42" height="42" align="left">
234
+ </a>
235
+ Built by <a href="https://en.dev">en.dev</a>.
236
+ </p>
237
+
238
+ <br clear="left">
239
+
240
+ ## License
241
+
242
+ MIT
package/bin/aube.exe ADDED
Binary file
package/bin/aubr.exe ADDED
Binary file
package/bin/aubx.exe ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@endevco/aube-win32-x64",
3
+ "version": "1.0.0-beta.2",
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.exe",
13
+ "aubr": "bin/aubr.exe",
14
+ "aubx": "bin/aubx.exe"
15
+ },
16
+ "files": [
17
+ "bin",
18
+ "README.md"
19
+ ],
20
+ "os": [
21
+ "win32"
22
+ ],
23
+ "cpu": [
24
+ "x64"
25
+ ]
26
+ }