@aarmos/bridge 0.1.9 → 0.1.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/CHANGELOG.md ADDED
@@ -0,0 +1,12 @@
1
+ # Changelog
2
+
3
+ All notable changes to this package are documented here. Format loosely follows [Keep a Changelog](https://keepachangelog.com/).
4
+
5
+ ## 0.1.10 — 2026-07-21
6
+
7
+ - Ship `NOTICE` alongside `LICENSE` (Apache-2.0 §4(d) — propagate attribution from `@aarmos/avar-core`).
8
+ - Add `bugs` metadata for the npm page.
9
+
10
+ ## 0.1.9
11
+
12
+ - Prior release.
package/NOTICE ADDED
@@ -0,0 +1,12 @@
1
+ @aarmos/bridge — Aarmos CLI bridge (local WebSocket host)
2
+ Copyright 2026 Aarmatix LLC
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License").
5
+ You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ This product includes software developed at Aarmatix LLC.
8
+
9
+ Third-party components redistributed:
10
+ @aarmos/avar-core — Copyright 2026 Aarmatix LLC — Apache-2.0
11
+ Reference implementation of the AVAR specification.
12
+ https://github.com/Aarmatix/avar-spec
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aarmos/bridge",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Aarmos CLI bridge — local WebSocket host that gives the Aarmos PWA scoped, deny-by-default access to files, shell, git, and read-only Postgres on the developer's machine. The PWA stays the brain; this is the arms.",
5
5
  "keywords": [
6
6
  "aarmos",
@@ -21,12 +21,14 @@
21
21
  "dev": "tsx src/index.ts dev",
22
22
  "start": "node dist/index.js",
23
23
  "test": "tsx test/e2e.ts && tsx test/sample-smoke.ts && tsx test/daemon-e2e.ts && node test/crash-handling.mjs && tsx --test test/llm-test.test.mjs",
24
- "prepublishOnly": "npm run build && npm test"
24
+ "prepublishOnly": "npm run build && npm test && node ../../scripts/check-npm-tarball.mjs"
25
25
  },
26
26
  "files": [
27
27
  "dist",
28
28
  "README.md",
29
- "LICENSE"
29
+ "LICENSE",
30
+ "NOTICE",
31
+ "CHANGELOG.md"
30
32
  ],
31
33
  "publishConfig": {
32
34
  "access": "public",
@@ -55,5 +57,8 @@
55
57
  },
56
58
  "engines": {
57
59
  "node": ">=18.17"
60
+ },
61
+ "bugs": {
62
+ "url": "https://www.aarmos.io/contact"
58
63
  }
59
64
  }