@thezzisu/droidnode 0.147.0 → 0.148.0
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 +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -94,7 +94,7 @@ Despite the patches being stable, the `dependencies.droid` range is pinned to `^
|
|
|
94
94
|
|
|
95
95
|
## Automation
|
|
96
96
|
|
|
97
|
-
- `.github/workflows/ci.yml` — runs `scripts/smoke.js` (extract + `--version`) on Node
|
|
97
|
+
- `.github/workflows/ci.yml` — runs `scripts/smoke.js` (extract + `--version`) on Node 24 and 26, on every push and PR.
|
|
98
98
|
- `.github/workflows/auto-track.yml` — runs daily; if `npm view droid version` exceeds our `package.json` version, runs the smoke against the new droid, bumps both `version` and `dependencies.droid`, commits to `main`, tags `v<version>`, and creates a GitHub release.
|
|
99
99
|
- `.github/workflows/publish.yml` — triggered on `v*.*.*` tag push (or manual dispatch). Publishes to npm via **Trusted Publisher (OIDC)** — no long-lived `NPM_TOKEN`, no static credentials. The workflow exchanges GitHub Actions' built-in OIDC token for an npm publish token at request time, and emits a [provenance attestation](https://docs.npmjs.com/generating-provenance-statements) so users can verify the published tarball was built from this exact commit.
|
|
100
100
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thezzisu/droidnode",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.148.0",
|
|
4
4
|
"description": "Run Factory's droid CLI on plain Node.js. Sidesteps the Bun 1.3.x standalone-init NULL-allocator race that crashes `droid --resume`, and Bun's long-session memory leaks.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"LICENSE"
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"droid": "^0.
|
|
17
|
+
"droid": "^0.148.0",
|
|
18
18
|
"koffi": "^2.10.0",
|
|
19
19
|
"ws": "^8.18.0"
|
|
20
20
|
},
|
|
21
21
|
"engines": {
|
|
22
|
-
"node": ">=
|
|
22
|
+
"node": ">=24.0.0"
|
|
23
23
|
},
|
|
24
24
|
"os": [
|
|
25
25
|
"linux",
|