@log0u7/opencode-mesh 0.1.0 → 0.1.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/CHANGELOG.md +6 -0
- package/package.json +13 -15
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.1] - 2026-09-23
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- No functional changes: first release shipped through the tag-driven trusted-publishing pipeline (GitHub Actions OIDC, npm provenance attestation).
|
|
15
|
+
|
|
10
16
|
## [0.1.0] - 2026-09-18
|
|
11
17
|
|
|
12
18
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@log0u7/opencode-mesh",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Multi-session coordination for OpenCode: session coordination on one machine and a peer pool across LAN or Tailscale, with pairing, mailbox, and worktree locks.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -29,19 +29,6 @@
|
|
|
29
29
|
"LICENSE",
|
|
30
30
|
"CHANGELOG.md"
|
|
31
31
|
],
|
|
32
|
-
"scripts": {
|
|
33
|
-
"build": "tsc -p tsconfig.json",
|
|
34
|
-
"build:check": "pnpm run build && pnpm pack --dry-run",
|
|
35
|
-
"check": "biome check .",
|
|
36
|
-
"format": "biome format --write .",
|
|
37
|
-
"typecheck": "tsc --noEmit",
|
|
38
|
-
"test": "vitest run",
|
|
39
|
-
"test:watch": "vitest",
|
|
40
|
-
"test:coverage": "vitest run --coverage",
|
|
41
|
-
"verify": "pnpm run check && pnpm run typecheck && pnpm run test",
|
|
42
|
-
"prepare": "lefthook install"
|
|
43
|
-
},
|
|
44
|
-
"packageManager": "pnpm@11.0.0",
|
|
45
32
|
"engines": {
|
|
46
33
|
"node": ">=22.0.0"
|
|
47
34
|
},
|
|
@@ -57,5 +44,16 @@
|
|
|
57
44
|
"lefthook": "2.1.12",
|
|
58
45
|
"typescript": "7.0.2",
|
|
59
46
|
"vitest": "^5.0.0"
|
|
47
|
+
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"build": "tsc -p tsconfig.json",
|
|
50
|
+
"build:check": "pnpm run build && pnpm pack --dry-run",
|
|
51
|
+
"check": "biome check .",
|
|
52
|
+
"format": "biome format --write .",
|
|
53
|
+
"typecheck": "tsc --noEmit",
|
|
54
|
+
"test": "vitest run",
|
|
55
|
+
"test:watch": "vitest",
|
|
56
|
+
"test:coverage": "vitest run --coverage",
|
|
57
|
+
"verify": "pnpm run check && pnpm run typecheck && pnpm run test"
|
|
60
58
|
}
|
|
61
|
-
}
|
|
59
|
+
}
|