@opentuah/core 0.1.84 → 0.1.85

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/package.json +9 -9
  2. package/lib/open-url.d.ts +0 -16
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "type": "module",
7
- "version": "0.1.84",
7
+ "version": "0.1.85",
8
8
  "description": "OpenTUI is a TypeScript library for building terminal user interfaces (TUIs)",
9
9
  "license": "MIT",
10
10
  "repository": {
@@ -57,13 +57,13 @@
57
57
  "bun-webgpu": "0.1.4",
58
58
  "planck": "^1.4.2",
59
59
  "three": "0.177.0",
60
- "@opentuah/core-darwin-x64": "0.1.84",
61
- "@opentuah/core-darwin-arm64": "0.1.84",
62
- "@opentuah/core-linux-x64": "0.1.84",
63
- "@opentuah/core-linux-arm64": "0.1.84",
64
- "@opentuah/core-win32-x64": "0.1.84",
65
- "@opentuah/core-win32-arm64": "0.1.84",
66
- "@opentuah/core-linux-musl-x64": "0.1.84",
67
- "@opentuah/core-linux-musl-arm64": "0.1.84"
60
+ "@opentuah/core-darwin-x64": "0.1.85",
61
+ "@opentuah/core-darwin-arm64": "0.1.85",
62
+ "@opentuah/core-linux-x64": "0.1.85",
63
+ "@opentuah/core-linux-arm64": "0.1.85",
64
+ "@opentuah/core-win32-x64": "0.1.85",
65
+ "@opentuah/core-win32-arm64": "0.1.85",
66
+ "@opentuah/core-linux-musl-x64": "0.1.85",
67
+ "@opentuah/core-linux-musl-arm64": "0.1.85"
68
68
  }
69
69
  }
package/lib/open-url.d.ts DELETED
@@ -1,16 +0,0 @@
1
- /**
2
- * Cross-platform URL opening utility.
3
- * Opens URLs in the system's default browser/handler using platform-specific commands.
4
- */
5
- /**
6
- * Opens a URL in the system's default browser/handler.
7
- *
8
- * Uses platform-specific commands:
9
- * - macOS: `open <url>`
10
- * - Linux: `xdg-open <url>`
11
- * - Windows: `cmd /c start "" <url>`
12
- *
13
- * @param url - The URL to open
14
- * @returns Promise that resolves when the command completes
15
- */
16
- export declare function openUrl(url: string): Promise<void>;