@vantaloom/runtime-linux-x64 0.1.5
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 +3 -0
- package/VERSION +1 -0
- package/bin/vantaloom-agent +0 -0
- package/bin/vantaloom-api +0 -0
- package/bin/vantaloomctl +0 -0
- package/cli/README.md +12 -0
- package/cli/bin/vantaloom.mjs +9 -0
- package/cli/config.json +8 -0
- package/cli/package.json +22 -0
- package/cli/src/cli.mjs +878 -0
- package/manifest.json +12 -0
- package/package.json +27 -0
- package/web/404.html +1 -0
- package/web/__next.__PAGE__.txt +9 -0
- package/web/__next._full.txt +18 -0
- package/web/__next._head.txt +5 -0
- package/web/__next._index.txt +6 -0
- package/web/__next._tree.txt +2 -0
- package/web/_next/static/chunks/05de644ba01fa1d2.js +1 -0
- package/web/_next/static/chunks/2e32f8acb56ccf66.js +9 -0
- package/web/_next/static/chunks/67854c55d1bbbb98.js +58 -0
- package/web/_next/static/chunks/7dfeab42587bcc0e.js +1 -0
- package/web/_next/static/chunks/7fff36a233a41392.css +2 -0
- package/web/_next/static/chunks/9724f3a46d10c4e1.js +1 -0
- package/web/_next/static/chunks/a6dad97d9634a72d.js +1 -0
- package/web/_next/static/chunks/a6dad97d9634a72d.js.map +1 -0
- package/web/_next/static/chunks/b9cfbaaba1fd82be.js +1 -0
- package/web/_next/static/chunks/ba682d76034e0aae.js +5 -0
- package/web/_next/static/chunks/bb310e4bf0deb70d.js +1 -0
- package/web/_next/static/chunks/e1a58c067dbe2ad5.js +18 -0
- package/web/_next/static/chunks/eca64d281474b631.js +1 -0
- package/web/_next/static/chunks/f83db3c44102c97e.js +1 -0
- package/web/_next/static/chunks/turbopack-64a451a64512e5cf.js +4 -0
- package/web/_next/static/rDZJjFMnJIH0S-v3k-n2B/_buildManifest.js +11 -0
- package/web/_next/static/rDZJjFMnJIH0S-v3k-n2B/_clientMiddlewareManifest.json +1 -0
- package/web/_next/static/rDZJjFMnJIH0S-v3k-n2B/_ssgManifest.js +1 -0
- package/web/_not-found/__next._full.txt +14 -0
- package/web/_not-found/__next._head.txt +5 -0
- package/web/_not-found/__next._index.txt +6 -0
- package/web/_not-found/__next._not-found.__PAGE__.txt +5 -0
- package/web/_not-found/__next._not-found.txt +4 -0
- package/web/_not-found/__next._tree.txt +2 -0
- package/web/_not-found.html +1 -0
- package/web/_not-found.txt +14 -0
- package/web/index.html +31 -0
- package/web/index.txt +18 -0
- package/web/themes/jelly/bg1.png +0 -0
- package/web/themes/jelly/bg2.png +0 -0
- package/web/themes/jelly/bg3.png +0 -0
- package/web/themes/jelly/bg4.png +0 -0
- package/web/themes/jelly/bg5.png +0 -0
- package/web/themes/jelly/body-background.png +0 -0
- package/web/themes/jelly/card1.png +0 -0
- package/web/themes/jelly/card2.png +0 -0
- package/web/themes/jelly/card3.png +0 -0
- package/web/themes/jelly/card4.png +0 -0
- package/web/themes/jelly/card5.png +0 -0
- package/web/themes/jelly/card6.png +0 -0
- package/web/themes/jelly/welcome-card.png +0 -0
package/README.md
ADDED
package/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ed620e2
|
|
Binary file
|
|
Binary file
|
package/bin/vantaloomctl
ADDED
|
Binary file
|
package/cli/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Vantaloom CLI
|
|
2
|
+
|
|
3
|
+
Command-line manager for installing, updating, starting, stopping, and inspecting a local Vantaloom runtime.
|
|
4
|
+
|
|
5
|
+
```sh
|
|
6
|
+
npm install -g @vantaloom/cli
|
|
7
|
+
vantaloom install
|
|
8
|
+
vantaloom status
|
|
9
|
+
vantaloom update
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
The CLI downloads the current platform runtime from public npm packages such as `@vantaloom/runtime-win32-x64`, `@vantaloom/runtime-linux-x64`, and `@vantaloom/runtime-darwin-arm64`. No GitHub token is required for install or update.
|
package/cli/config.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"remote": "https://github.com/Timefiles404/Vantaloom-next",
|
|
3
|
+
"repo": "Timefiles404/Vantaloom-next",
|
|
4
|
+
"releaseTag": "runtime-latest",
|
|
5
|
+
"runtimePackage": "@vantaloom/runtime-linux-x64",
|
|
6
|
+
"runtimeVersion": "latest",
|
|
7
|
+
"npmRegistry": "https://registry.npmjs.org"
|
|
8
|
+
}
|
package/cli/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vantaloom/cli",
|
|
3
|
+
"version": "0.1.5",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"description": "Vantaloom local runtime manager.",
|
|
7
|
+
"bin": {
|
|
8
|
+
"vantaloom": "bin/vantaloom.mjs"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin",
|
|
12
|
+
"src",
|
|
13
|
+
"package.json",
|
|
14
|
+
"README.md"
|
|
15
|
+
],
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=20"
|
|
21
|
+
}
|
|
22
|
+
}
|