bincode-dev 0.0.15 → 0.0.16

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/bin/bincode +3 -2
  2. package/package.json +5 -5
package/bin/bincode CHANGED
@@ -10,8 +10,9 @@ function run(target) {
10
10
  // Ensure this package variant uses its own config/data directories.
11
11
  if (!env.BINCODE_APP_ID) env.BINCODE_APP_ID = "bincode-dev"
12
12
  // Provide package-level defaults, but never override user-provided env vars.
13
- if (!env.BINERIC_API_URL) env.BINERIC_API_URL = "https://api.bincode-dev.example/api/v1/ai"
14
- if (!env.BINERIC_FRONTEND_URL) env.BINERIC_FRONTEND_URL = "https://app.bincode-dev.example"
13
+ // bincode-ai -> staging (requested) -- mirror the same defaults for testing
14
+ if (!env.BINERIC_API_URL) env.BINERIC_API_URL = "https://stagingapi.bineric.com/api/v1/ai"
15
+ if (!env.BINERIC_FRONTEND_URL) env.BINERIC_FRONTEND_URL = "https://stagingplatform.bineric.com"
15
16
 
16
17
  // Best-effort: ensure executable bit on mac/linux.
17
18
  try {
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "bincode-dev",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
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.15",
10
- "bincode-dev-darwin-x64": "0.0.15",
11
- "bincode-dev-linux-x64": "0.0.15",
12
- "bincode-dev-windows-x64": "0.0.15"
9
+ "bincode-dev-darwin-arm64": "0.0.16",
10
+ "bincode-dev-darwin-x64": "0.0.16",
11
+ "bincode-dev-linux-x64": "0.0.16",
12
+ "bincode-dev-windows-x64": "0.0.16"
13
13
  },
14
14
  "scripts": {
15
15
  "build": "bun script/build.ts",