bincode-dev 0.0.19 → 0.0.20

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.
Files changed (2) hide show
  1. package/README.md +0 -52
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,53 +1 @@
1
1
  # bincode-dev
2
-
3
- Dev/test build of the Bineric AI-powered development CLI (not affiliated with `opencode`).
4
-
5
- ## Install
6
-
7
- ```bash
8
- npm i -g bincode-dev
9
- ```
10
-
11
- ## Usage
12
-
13
- ```bash
14
- bincode
15
- ```
16
-
17
- Login:
18
-
19
- ```bash
20
- bincode login
21
- ```
22
-
23
- ## Publishing (multi-platform, small main package)
24
-
25
- `bincode-dev` is a small wrapper package. The native binaries are published as per-platform optional dependency packages:
26
-
27
- - `bincode-dev-darwin-arm64`
28
- - `bincode-dev-darwin-x64`
29
- - `bincode-dev-linux-x64`
30
- - `bincode-dev-windows-x64`
31
-
32
- Build + publish from repo root (example using WSL):
33
-
34
- ```bash
35
- # Build web console
36
- cd /mnt/e/bineric-ai/bincode
37
- bun run --cwd packages/app build
38
-
39
- # Build opencode binaries and copy them into publish-bincode-dev/dist
40
- cd /mnt/e/bineric-ai/bincode/publish-bincode-dev
41
- bun run build
42
-
43
- # Generate platform packages from publish-bincode-dev/dist
44
- npm run prepare:platform-packages
45
-
46
- # Publish platform packages first (same version as bincode-dev)
47
- for d in platform-packages/*; do (cd "$d" && npm publish --access public); done
48
-
49
- # Publish the small wrapper package last
50
- npm publish --access public
51
- ```
52
-
53
-
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "bincode-dev",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "description": "Bincode: AI-powered development CLI (dev/test version, not affiliated with opencode)",
5
5
  "bin": {
6
6
  "bincode": "./bin/bincode"
7
7
  },
8
8
  "optionalDependencies": {
9
- "bincode-dev-darwin-arm64": "0.0.19",
10
- "bincode-dev-darwin-x64": "0.0.19",
11
- "bincode-dev-linux-x64": "0.0.19",
12
- "bincode-dev-windows-x64": "0.0.19"
9
+ "bincode-dev-darwin-arm64": "0.0.20",
10
+ "bincode-dev-darwin-x64": "0.0.20",
11
+ "bincode-dev-linux-x64": "0.0.20",
12
+ "bincode-dev-windows-x64": "0.0.20"
13
13
  },
14
14
  "scripts": {
15
15
  "build": "bun script/build.ts",