@opentray/ext-webview 0.0.0

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 +11 -0
  2. package/package.json +26 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # @opentray/ext-webview
2
+
3
+ Official rich popup extension for OpenTray.
4
+
5
+ ## Role
6
+
7
+ - Provide borderless tray-adjacent popup surfaces.
8
+ - Use platform WebView engines through the native extension layer.
9
+ - Route WebView messages through the owning `surfaceId` / `trayId`.
10
+
11
+ This package is an extension atom. It must not become the owner of core tray lifecycle.
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@opentray/ext-webview",
3
+ "version": "0.0.0",
4
+ "description": "Official OpenTray rich popup extension backed by platform WebView engines.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "import": "./dist/index.js"
11
+ },
12
+ "./package.json": "./package.json"
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "platforms",
17
+ "README.md"
18
+ ],
19
+ "sideEffects": false,
20
+ "peerDependencies": {
21
+ "opentray": ">=0.0.0"
22
+ },
23
+ "devDependencies": {
24
+ "opentray": "0.0.0"
25
+ }
26
+ }