@nimbus21.ai/the-link 3.7.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/LICENSE +5 -0
- package/README.md +37 -0
- package/bin/.gitkeep +0 -0
- package/bin/the-link.js +488 -0
- package/package.json +26 -0
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nimbus21.ai/the-link",
|
|
3
|
+
"version": "3.7.0",
|
|
4
|
+
"description": "the-link: Hub 360 Terminal Agent — runtime package for macOS",
|
|
5
|
+
"author": "NIMBUS21 LLC <dev@nimbus21.com>",
|
|
6
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
7
|
+
"homepage": "https://nimbus21.com",
|
|
8
|
+
"bin": {
|
|
9
|
+
"the-link": "bin/the-link.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"bin/",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"engines": {
|
|
16
|
+
"bun": ">=1.0.0"
|
|
17
|
+
},
|
|
18
|
+
"os": [
|
|
19
|
+
"darwin",
|
|
20
|
+
"linux"
|
|
21
|
+
],
|
|
22
|
+
"cpu": [
|
|
23
|
+
"x64",
|
|
24
|
+
"arm64"
|
|
25
|
+
]
|
|
26
|
+
}
|