-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpesde.toml
34 lines (28 loc) · 914 Bytes
/
pesde.toml
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
name = "bright/bright"
version = "0.1.0"
description = "A scriptable tool for transforming and transpiling Luau code"
authors = ["lewisakura <[email protected]> (https://lewisakura.moe)"]
repository = "https://github.com/brightluau/bright"
license = "MPL-2.0"
includes = [
"src",
"vendor",
"LICENSE.txt",
"pesde.toml",
"README.md",
".luaurc"
]
[target]
environment = "lune"
bin = "./src/bin/main.luau"
lib = "./src/lib/lib.luau"
[indices]
default = "https://github.com/pesde-pkg/index"
[dependencies]
unzip = { name = "0x5eal/unzip", version = "^0.1.0", target = "luau" }
argparse = { name = "caveful_games/argparse", version = "^0.1.2" }
[dev_dependencies]
frktest = { name = "itsfrank/frktest", version = "^0.0.2" }
[patches]
"0x5eal/unzip" = { "0.1.0 luau" = "patches/0x5eal+unzip-0.1.0+luau.patch" }
"caveful_games/argparse" = { "0.1.2 lune" = "patches/caveful_games+argparse-0.1.2+lune.patch" }