@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.
Files changed (59) hide show
  1. package/README.md +3 -0
  2. package/VERSION +1 -0
  3. package/bin/vantaloom-agent +0 -0
  4. package/bin/vantaloom-api +0 -0
  5. package/bin/vantaloomctl +0 -0
  6. package/cli/README.md +12 -0
  7. package/cli/bin/vantaloom.mjs +9 -0
  8. package/cli/config.json +8 -0
  9. package/cli/package.json +22 -0
  10. package/cli/src/cli.mjs +878 -0
  11. package/manifest.json +12 -0
  12. package/package.json +27 -0
  13. package/web/404.html +1 -0
  14. package/web/__next.__PAGE__.txt +9 -0
  15. package/web/__next._full.txt +18 -0
  16. package/web/__next._head.txt +5 -0
  17. package/web/__next._index.txt +6 -0
  18. package/web/__next._tree.txt +2 -0
  19. package/web/_next/static/chunks/05de644ba01fa1d2.js +1 -0
  20. package/web/_next/static/chunks/2e32f8acb56ccf66.js +9 -0
  21. package/web/_next/static/chunks/67854c55d1bbbb98.js +58 -0
  22. package/web/_next/static/chunks/7dfeab42587bcc0e.js +1 -0
  23. package/web/_next/static/chunks/7fff36a233a41392.css +2 -0
  24. package/web/_next/static/chunks/9724f3a46d10c4e1.js +1 -0
  25. package/web/_next/static/chunks/a6dad97d9634a72d.js +1 -0
  26. package/web/_next/static/chunks/a6dad97d9634a72d.js.map +1 -0
  27. package/web/_next/static/chunks/b9cfbaaba1fd82be.js +1 -0
  28. package/web/_next/static/chunks/ba682d76034e0aae.js +5 -0
  29. package/web/_next/static/chunks/bb310e4bf0deb70d.js +1 -0
  30. package/web/_next/static/chunks/e1a58c067dbe2ad5.js +18 -0
  31. package/web/_next/static/chunks/eca64d281474b631.js +1 -0
  32. package/web/_next/static/chunks/f83db3c44102c97e.js +1 -0
  33. package/web/_next/static/chunks/turbopack-64a451a64512e5cf.js +4 -0
  34. package/web/_next/static/rDZJjFMnJIH0S-v3k-n2B/_buildManifest.js +11 -0
  35. package/web/_next/static/rDZJjFMnJIH0S-v3k-n2B/_clientMiddlewareManifest.json +1 -0
  36. package/web/_next/static/rDZJjFMnJIH0S-v3k-n2B/_ssgManifest.js +1 -0
  37. package/web/_not-found/__next._full.txt +14 -0
  38. package/web/_not-found/__next._head.txt +5 -0
  39. package/web/_not-found/__next._index.txt +6 -0
  40. package/web/_not-found/__next._not-found.__PAGE__.txt +5 -0
  41. package/web/_not-found/__next._not-found.txt +4 -0
  42. package/web/_not-found/__next._tree.txt +2 -0
  43. package/web/_not-found.html +1 -0
  44. package/web/_not-found.txt +14 -0
  45. package/web/index.html +31 -0
  46. package/web/index.txt +18 -0
  47. package/web/themes/jelly/bg1.png +0 -0
  48. package/web/themes/jelly/bg2.png +0 -0
  49. package/web/themes/jelly/bg3.png +0 -0
  50. package/web/themes/jelly/bg4.png +0 -0
  51. package/web/themes/jelly/bg5.png +0 -0
  52. package/web/themes/jelly/body-background.png +0 -0
  53. package/web/themes/jelly/card1.png +0 -0
  54. package/web/themes/jelly/card2.png +0 -0
  55. package/web/themes/jelly/card3.png +0 -0
  56. package/web/themes/jelly/card4.png +0 -0
  57. package/web/themes/jelly/card5.png +0 -0
  58. package/web/themes/jelly/card6.png +0 -0
  59. package/web/themes/jelly/welcome-card.png +0 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @vantaloom/runtime-linux-x64
2
+
3
+ Platform runtime package for Vantaloom linux-x64. Install @vantaloom/cli instead of this package directly.
package/VERSION ADDED
@@ -0,0 +1 @@
1
+ ed620e2
Binary file
Binary file
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.
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env node
2
+
3
+ import { main } from "../src/cli.mjs"
4
+
5
+ main(process.argv.slice(2)).catch((error) => {
6
+ const message = error instanceof Error ? error.message : String(error)
7
+ console.error(`vantaloom: ${message}`)
8
+ process.exit(1)
9
+ })
@@ -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
+ }
@@ -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
+ }