@servelink/serve-win32-x64 0.8.2 → 0.8.4
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/LICENSE +23 -0
- package/bin/serve.exe +0 -0
- package/package.json +12 -10
package/LICENSE
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Proprietary License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 swyftlabs
|
|
4
|
+
|
|
5
|
+
All rights reserved.
|
|
6
|
+
|
|
7
|
+
This software and its source code are the exclusive property of swyftlabs and
|
|
8
|
+
are protected by copyright law. No part of this software may be copied,
|
|
9
|
+
modified, merged, published, distributed, sublicensed, transferred, sold,
|
|
10
|
+
reproduced, or used in any form or by any means — including for commercial
|
|
11
|
+
purposes, reverse engineering, or the creation of derivative works — without
|
|
12
|
+
the prior express written permission of swyftlabs.
|
|
13
|
+
|
|
14
|
+
This software is provided "AS IS", without warranty of any kind, express or
|
|
15
|
+
implied, including but not limited to the warranties of merchantability,
|
|
16
|
+
fitness for a particular purpose, and noninfringement. In no event shall the
|
|
17
|
+
authors or copyright holders be liable for any claim, damages, or other
|
|
18
|
+
liability, whether in an action of contract, tort, or otherwise, arising from,
|
|
19
|
+
out of, or in connection with the software or the use or other dealings in the
|
|
20
|
+
software.
|
|
21
|
+
|
|
22
|
+
The absence of a license does not grant any permission. All rights not
|
|
23
|
+
expressly granted herein are reserved to swyftlabs.
|
package/bin/serve.exe
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@servelink/serve-win32-x64",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.4",
|
|
4
4
|
"description": "The serve CLI native binary (serve.exe) for win32/x64. Installed as an optional dependency of @servelink/serve; not meant to be used directly.",
|
|
5
|
+
"homepage": "https://servelink.cc",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/servelink-swyftlabs/serve-mcp.git"
|
|
9
|
+
},
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/servelink-swyftlabs/serve-mcp/issues"
|
|
12
|
+
},
|
|
5
13
|
"os": [
|
|
6
14
|
"win32"
|
|
7
15
|
],
|
|
@@ -9,14 +17,8 @@
|
|
|
9
17
|
"x64"
|
|
10
18
|
],
|
|
11
19
|
"files": [
|
|
12
|
-
"bin/"
|
|
20
|
+
"bin/",
|
|
21
|
+
"LICENSE"
|
|
13
22
|
],
|
|
14
|
-
"license": "
|
|
15
|
-
"keywords": [
|
|
16
|
-
"tunnel",
|
|
17
|
-
"ngrok",
|
|
18
|
-
"localhost",
|
|
19
|
-
"reverse-tunnel",
|
|
20
|
-
"cli"
|
|
21
|
-
]
|
|
23
|
+
"license": "SEE LICENSE IN LICENSE"
|
|
22
24
|
}
|