@opentray/ext-badge 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.
- package/README.md +9 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# @opentray/ext-badge
|
|
2
|
+
|
|
3
|
+
Official platform status extension for OpenTray.
|
|
4
|
+
|
|
5
|
+
## Role
|
|
6
|
+
|
|
7
|
+
- Expose badge counts, progress bars, overlay icons, and attention status where platforms support them.
|
|
8
|
+
- Degrade through capability detection instead of cross-platform fake behavior.
|
|
9
|
+
- Keep native platform APIs behind extension contracts.
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@opentray/ext-badge",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Official OpenTray platform badge, progress, and overlay API extension.",
|
|
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
|
+
}
|