@superbased/observer-win32-x64 1.4.6 → 1.4.7

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,47 @@
1
+ # @superbased/observer-win32-x64
2
+
3
+ Pre-built **Windows x64** binary for [`@superbased/observer`](https://www.npmjs.com/package/@superbased/observer).
4
+
5
+ You almost certainly don't want to install this directly. Install
6
+ the main package instead — npm will automatically pick up the
7
+ binary that matches your machine:
8
+
9
+ ```bash
10
+ npm install -g @superbased/observer
11
+ observer --version
12
+ ```
13
+
14
+ The main package declares this and four other per-platform binaries
15
+ as `optionalDependencies` with matching `os` + `cpu` constraints, so
16
+ only the right one downloads. Same shape as `esbuild` / `swc` /
17
+ `@biomejs/biome`.
18
+
19
+ ## When to install this directly
20
+
21
+ - You're cross-publishing observer's binary into another tool's
22
+ release pipeline and only need this platform's bytes.
23
+ - You're debugging a release issue where the main shim can't resolve
24
+ the platform package.
25
+
26
+ In every other case use `@superbased/observer`.
27
+
28
+ ## What you get
29
+
30
+ A single executable at `bin/observer.exe`. No runtime dependencies,
31
+ pure-Go (CGO disabled — uses `modernc.org/sqlite`). Static assets
32
+ (dashboard HTML/CSS/JS) and SQL migrations are embedded into the
33
+ binary at build time via `go:embed`.
34
+
35
+ ## See also
36
+
37
+ - [Main package](https://www.npmjs.com/package/@superbased/observer)
38
+ — install + quickstart + dashboard tour + MCP tools + compression
39
+ mechanisms + cost math + glossary + CLI reference + configuration +
40
+ troubleshooting + privacy + license.
41
+ - [Source repository](https://github.com/marmutapp/superbased-observer)
42
+ — Go source, contributor docs, full spec.
43
+
44
+ ## License
45
+
46
+ Apache 2.0. See
47
+ [LICENSE](https://github.com/marmutapp/superbased-observer/blob/main/LICENSE).
package/bin/observer.exe CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superbased/observer-win32-x64",
3
- "version": "1.4.6",
3
+ "version": "1.4.7",
4
4
  "description": "Windows x64 binary for @superbased/observer.",
5
5
  "homepage": "https://github.com/marmutapp/superbased-observer",
6
6
  "repository": {
@@ -16,6 +16,7 @@
16
16
  "x64"
17
17
  ],
18
18
  "files": [
19
- "bin"
19
+ "bin",
20
+ "README.md"
20
21
  ]
21
22
  }