From d08a935e51064de10f54fcd9922e639aaa04404e Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Sun, 30 Jul 2023 13:03:35 +0530 Subject: [PATCH] feat: scoop package manifest --- package/scoop/manifest.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 package/scoop/manifest.json diff --git a/package/scoop/manifest.json b/package/scoop/manifest.json new file mode 100644 index 0000000..b0af227 --- /dev/null +++ b/package/scoop/manifest.json @@ -0,0 +1,23 @@ +{ + "version": "0.7.5", + "description": "A standalone Luau script runtime", + "homepage": "https://lune-org.github.io/docs", + "license": { + "identifier": "MPL2", + "url": "https://github.com/filiptibell/lune/blob/main/LICENSE.txt" + }, + "architecture": { + "64bit": { + "url": "https://github.com/filiptibell/lune/releases/download/v0.7.5/lune-0.7.5-windows-x86_64.zip", + "hash": "601e8050d711c4393da06f2c63ee8a45574901e40a03435f0098e130a23a5cec" + }, + }, + "bin": "lune.exe", + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/filiptibell/lune/releases/download/v$version/lune-$version-windows-x86_64.zip" + } + } + } +}