media-gateway 0.0.1
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 +10 -0
- package/package.json +22 -0
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# media-gateway
|
|
2
|
+
|
|
3
|
+
Media gateway service — Go server binary (linux-arm64).
|
|
4
|
+
|
|
5
|
+
This package carries the production server binary for hosts to install. It is
|
|
6
|
+
not a library, so there is nothing to `require()`.
|
|
7
|
+
|
|
8
|
+
`0.0.1` is an empty placeholder published by hand to reserve the name and let
|
|
9
|
+
npm trusted publishing (OIDC) be configured for this repository. Later
|
|
10
|
+
versions will be published from CI, following the same shape as `pushy-go`.
|
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "media-gateway",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Media gateway service (Go) — linux-arm64 server binary. Placeholder until CI publishes real releases; installed on hosts through npmmirror.",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/sunnylqm/media-gateway.git"
|
|
9
|
+
},
|
|
10
|
+
"os": [
|
|
11
|
+
"linux"
|
|
12
|
+
],
|
|
13
|
+
"cpu": [
|
|
14
|
+
"arm64"
|
|
15
|
+
],
|
|
16
|
+
"files": [
|
|
17
|
+
"bin/",
|
|
18
|
+
"build-info.json",
|
|
19
|
+
"SHA256SUMS"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {}
|
|
22
|
+
}
|