ocx 2.0.6 → 2.0.8

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/dist/index.js +149 -150
  2. package/package.json +6 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ocx",
3
- "version": "2.0.6",
3
+ "version": "2.0.8",
4
4
  "description": "OCX CLI - OpenCode extension manager with portable, isolated profiles. Your setup, anywhere.",
5
5
  "author": "kdcokenny",
6
6
  "license": "MIT",
@@ -34,18 +34,21 @@
34
34
  "registry"
35
35
  ],
36
36
  "engines": {
37
- "node": ">=18"
37
+ "bun": ">=1.2.0"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "bun run scripts/build.ts",
41
41
  "build:binary": "bun run scripts/build-binary.ts",
42
+ "build:binary:all": "bun run scripts/build-binary.ts --all",
43
+ "build:binary:windows": "bun run scripts/build-binary.ts --target=windows-x64 && bun run scripts/build-binary.ts --target=windows-x64-baseline",
42
44
  "release:tag": "bun run scripts/release-tag.ts",
43
45
  "check": "bun check:biome && bun check:types",
44
46
  "check:biome": "biome check .",
45
47
  "check:types": "tsc --noEmit",
46
48
  "dev": "bun run src/index.ts",
47
49
  "prepublishOnly": "bun run build",
48
- "test": "bun test"
50
+ "test": "bun test",
51
+ "test:binary-smoke": "OCX_DIST_TESTS=1 bun test tests/binary-smoke.test.ts"
49
52
  },
50
53
  "dependencies": {
51
54
  "commander": "^14.0.3",