-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathallay.lua
More file actions
44 lines (41 loc) · 1.22 KB
/
allay.lua
File metadata and controls
44 lines (41 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
return {
name = "allay",
version = "0.1.0",
description = "The allay package manager itself, installable as a package so it can update.",
author = "alfa",
license = "MIT",
base_url = "https://raw.githubusercontent.com/allaycc/allay/main",
files = {
bin = {
["bin/allay.lua"] = "allay",
},
lib = {
["lib/source.lua"] = "source.lua",
["lib/index.lua"] = "index.lua",
["lib/schema.lua"] = "schema.lua",
["lib/pkg.lua"] = "pkg.lua",
["lib/lockfile.lua"] = "lockfile.lua",
["lib/resolver.lua"] = "resolver.lua",
["lib/installer.lua"] = "installer.lua",
["lib/translator.lua"] = "translator.lua",
["lib/transport/init.lua"] = "transport/init.lua",
["lib/transport/https.lua"] = "transport/https.lua",
["lib/transport/disk.lua"] = "transport/disk.lua",
},
raw = {
["setup.lua"] = "/usr/allay/setup.lua",
},
},
hashes = {},
dependencies = {
"hash",
"httpkit",
"pathkit",
"log",
"argparse",
"levenshtein",
"ui",
"scout",
"observe",
},
}