@opentray/ext-badge-windows-arm64 0.1.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 +7 -0
- package/bin/opentray_ext_badge.dll +0 -0
- package/package.json +23 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# @opentray/ext-badge-windows-arm64
|
|
2
|
+
|
|
3
|
+
Windows arm64 native dynamic library package for `@opentray/ext-badge`.
|
|
4
|
+
|
|
5
|
+
This package is installed as an optional platform artifact. Source control does not commit the generated dynamic library; CI or local staging places `opentray_ext_badge.dll` into `bin/` before npm publish or smoke testing.
|
|
6
|
+
|
|
7
|
+
Current maturity: reduced. The runtime reports badge capability truth and rejects unsupported families explicitly instead of pretending full taskbar parity.
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@opentray/ext-badge-windows-arm64",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "OpenTray badge native extension for Windows arm64.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/jixoai/opentray"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"os": [
|
|
15
|
+
"win32"
|
|
16
|
+
],
|
|
17
|
+
"cpu": [
|
|
18
|
+
"arm64"
|
|
19
|
+
],
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"opentray": ">=0.0.0"
|
|
22
|
+
}
|
|
23
|
+
}
|