mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
523 lines
No EOL
18 KiB
JSON
523 lines
No EOL
18 KiB
JSON
{
|
|
"@roblox/global/fs": {
|
|
"code_sample": "",
|
|
"documentation": "Filesystem",
|
|
"keys": {
|
|
"fs": "@roblox/global/fs.fs"
|
|
},
|
|
"learn_more_link": ""
|
|
},
|
|
"@roblox/global/fs.isDir": {
|
|
"code_sample": "",
|
|
"documentation": "Checks if a given path is a directory.\n\nAn error will be thrown in the following situations:\n\n* The current process lacks permissions to read at `path`.\n* Some other I/O error occurred.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/fs.isDir/param/0",
|
|
"name": "path"
|
|
}
|
|
],
|
|
"returns": [
|
|
"@roblox/global/fs.isDir/return/0"
|
|
]
|
|
},
|
|
"@roblox/global/fs.isDir/param/0": {
|
|
"documentation": "The directory path to check"
|
|
},
|
|
"@roblox/global/fs.isDir/return/0": {
|
|
"documentation": "If the path is a directory or not"
|
|
},
|
|
"@roblox/global/fs.isFile": {
|
|
"code_sample": "",
|
|
"documentation": "Checks if a given path is a file.\n\nAn error will be thrown in the following situations:\n\n* The current process lacks permissions to read at `path`.\n* Some other I/O error occurred.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/fs.isFile/param/0",
|
|
"name": "path"
|
|
}
|
|
],
|
|
"returns": [
|
|
"@roblox/global/fs.isFile/return/0"
|
|
]
|
|
},
|
|
"@roblox/global/fs.isFile/param/0": {
|
|
"documentation": "The file path to check"
|
|
},
|
|
"@roblox/global/fs.isFile/return/0": {
|
|
"documentation": "If the path is a file or not"
|
|
},
|
|
"@roblox/global/fs.readDir": {
|
|
"code_sample": "",
|
|
"documentation": "Reads entries in a directory at `path`.\n\nAn error will be thrown in the following situations:\n\n* `path` does not point to an existing directory.\n* The current process lacks permissions to read the contents of the directory.\n* Some other I/O error occurred.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/fs.readDir/param/0",
|
|
"name": "path"
|
|
}
|
|
],
|
|
"returns": [
|
|
"@roblox/global/fs.readDir/return/0"
|
|
]
|
|
},
|
|
"@roblox/global/fs.readDir/param/0": {
|
|
"documentation": "The directory path to search in"
|
|
},
|
|
"@roblox/global/fs.readDir/return/0": {
|
|
"documentation": "A list of files & directories found"
|
|
},
|
|
"@roblox/global/fs.readFile": {
|
|
"code_sample": "",
|
|
"documentation": "Reads a file at `path`.\n\nAn error will be thrown in the following situations:\n\n* `path` does not point to an existing file.\n* The current process lacks permissions to read the file.\n* The contents of the file cannot be read as a UTF-8 string.\n* Some other I/O error occurred.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/fs.readFile/param/0",
|
|
"name": "path"
|
|
}
|
|
],
|
|
"returns": [
|
|
"@roblox/global/fs.readFile/return/0"
|
|
]
|
|
},
|
|
"@roblox/global/fs.readFile/param/0": {
|
|
"documentation": "The path to the file to read"
|
|
},
|
|
"@roblox/global/fs.readFile/return/0": {
|
|
"documentation": "The contents of the file"
|
|
},
|
|
"@roblox/global/fs.removeDir": {
|
|
"code_sample": "",
|
|
"documentation": "Removes a directory and all of its contents.\n\nAn error will be thrown in the following situations:\n\n* `path` is not an existing and empty directory.\n* The current process lacks permissions to remove the directory.\n* Some other I/O error occurred.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/fs.removeDir/param/0",
|
|
"name": "path"
|
|
}
|
|
],
|
|
"returns": []
|
|
},
|
|
"@roblox/global/fs.removeDir/param/0": {
|
|
"documentation": "The directory to remove"
|
|
},
|
|
"@roblox/global/fs.removeFile": {
|
|
"code_sample": "",
|
|
"documentation": "Removes a file.\n\nAn error will be thrown in the following situations:\n\n* `path` does not point to an existing file.\n* The current process lacks permissions to remove the file.\n* Some other I/O error occurred.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/fs.removeFile/param/0",
|
|
"name": "path"
|
|
}
|
|
],
|
|
"returns": []
|
|
},
|
|
"@roblox/global/fs.removeFile/param/0": {
|
|
"documentation": "The file to remove"
|
|
},
|
|
"@roblox/global/fs.writeDir": {
|
|
"code_sample": "",
|
|
"documentation": "Creates a directory and its parent directories if they are missing.\n\nAn error will be thrown in the following situations:\n\n* `path` already points to an existing file or directory.\n* The current process lacks permissions to create the directory or its missing parents.\n* Some other I/O error occurred.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/fs.writeDir/param/0",
|
|
"name": "path"
|
|
}
|
|
],
|
|
"returns": []
|
|
},
|
|
"@roblox/global/fs.writeDir/param/0": {
|
|
"documentation": "The directory to create"
|
|
},
|
|
"@roblox/global/fs.writeFile": {
|
|
"code_sample": "",
|
|
"documentation": "Writes to a file at `path`.\n\nAn error will be thrown in the following situations:\n\n* The file's parent directory does not exist.\n* The current process lacks permissions to write to the file.\n* Some other I/O error occurred.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/fs.writeFile/param/0",
|
|
"name": "path"
|
|
},
|
|
{
|
|
"documentation": "@roblox/global/fs.writeFile/param/1",
|
|
"name": "contents"
|
|
}
|
|
],
|
|
"returns": []
|
|
},
|
|
"@roblox/global/fs.writeFile/param/0": {
|
|
"documentation": "The path of the file"
|
|
},
|
|
"@roblox/global/fs.writeFile/param/1": {
|
|
"documentation": "The contents of the file"
|
|
},
|
|
"@roblox/global/net": {
|
|
"code_sample": "",
|
|
"documentation": "Networking",
|
|
"keys": {
|
|
"net": "@roblox/global/net.net"
|
|
},
|
|
"learn_more_link": ""
|
|
},
|
|
"@roblox/global/net.jsonDecode": {
|
|
"code_sample": "",
|
|
"documentation": "Decodes the given JSON string into a lua value.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/net.jsonDecode/param/0",
|
|
"name": "encoded"
|
|
}
|
|
],
|
|
"returns": [
|
|
"@roblox/global/net.jsonDecode/return/0"
|
|
]
|
|
},
|
|
"@roblox/global/net.jsonDecode/param/0": {
|
|
"documentation": "The JSON string to decode"
|
|
},
|
|
"@roblox/global/net.jsonDecode/return/0": {
|
|
"documentation": "The decoded lua value"
|
|
},
|
|
"@roblox/global/net.jsonEncode": {
|
|
"code_sample": "",
|
|
"documentation": "Encodes the given value as JSON.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/net.jsonEncode/param/0",
|
|
"name": "value"
|
|
},
|
|
{
|
|
"documentation": "@roblox/global/net.jsonEncode/param/1",
|
|
"name": "pretty"
|
|
}
|
|
],
|
|
"returns": [
|
|
"@roblox/global/net.jsonEncode/return/0"
|
|
]
|
|
},
|
|
"@roblox/global/net.jsonEncode/param/0": {
|
|
"documentation": "The value to encode as JSON"
|
|
},
|
|
"@roblox/global/net.jsonEncode/param/1": {
|
|
"documentation": "If the encoded JSON string should include newlines and spaces. Defaults to false"
|
|
},
|
|
"@roblox/global/net.jsonEncode/return/0": {
|
|
"documentation": "The encoded JSON string"
|
|
},
|
|
"@roblox/global/net.request": {
|
|
"code_sample": "",
|
|
"documentation": "Sends an HTTP request using the given url and / or parameters, and returns a dictionary that describes the response received.\n\nOnly throws an error if a miscellaneous network or I/O error occurs, never for unsuccessful status codes.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/net.request/param/0",
|
|
"name": "config"
|
|
}
|
|
],
|
|
"returns": [
|
|
"@roblox/global/net.request/return/0"
|
|
]
|
|
},
|
|
"@roblox/global/net.request/param/0": {
|
|
"documentation": "The URL or request config to use"
|
|
},
|
|
"@roblox/global/net.request/return/0": {
|
|
"documentation": "A dictionary representing the response for the request"
|
|
},
|
|
"@roblox/global/net.serve": {
|
|
"code_sample": "",
|
|
"documentation": "Creates an HTTP server that listens on the given `port`.\n\nThe call to this function will block indefinitely and if\nput inside `task.spawn` will not be cancellable using `task.cancel`, to\nstop the script from running it must be terminated manually or using `process.exit`.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/net.serve/param/0",
|
|
"name": "port"
|
|
},
|
|
{
|
|
"documentation": "@roblox/global/net.serve/param/1",
|
|
"name": "handler"
|
|
}
|
|
],
|
|
"returns": []
|
|
},
|
|
"@roblox/global/net.serve/param/0": {
|
|
"documentation": "The port to use for the server"
|
|
},
|
|
"@roblox/global/net.serve/param/1": {
|
|
"documentation": "The handler function to use for the server"
|
|
},
|
|
"@roblox/global/process": {
|
|
"code_sample": "",
|
|
"documentation": "Current process & child processes",
|
|
"keys": {
|
|
"process": "@roblox/global/process.process"
|
|
},
|
|
"learn_more_link": ""
|
|
},
|
|
"@roblox/global/process.args": {
|
|
"code_sample": "",
|
|
"documentation": "The arguments given when running the Lune script.",
|
|
"learn_more_link": "",
|
|
"params": [],
|
|
"returns": []
|
|
},
|
|
"@roblox/global/process.cwd": {
|
|
"code_sample": "",
|
|
"documentation": "The current working directory in which the Lune script is running.",
|
|
"learn_more_link": "",
|
|
"params": [],
|
|
"returns": []
|
|
},
|
|
"@roblox/global/process.env": {
|
|
"code_sample": "",
|
|
"documentation": "Current environment variables for this process.\n\nSetting a value on this table will set the corresponding environment variable.",
|
|
"learn_more_link": "",
|
|
"params": [],
|
|
"returns": []
|
|
},
|
|
"@roblox/global/process.exit": {
|
|
"code_sample": "",
|
|
"documentation": "Exits the currently running script as soon as possible with the given exit code.\n\nExit code 0 is treated as a successful exit, any other value is treated as an error.\n\nSetting the exit code using this function will override any otherwise automatic exit code.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/process.exit/param/0",
|
|
"name": "code"
|
|
}
|
|
],
|
|
"returns": []
|
|
},
|
|
"@roblox/global/process.exit/param/0": {
|
|
"documentation": "The exit code to set"
|
|
},
|
|
"@roblox/global/process.spawn": {
|
|
"code_sample": "",
|
|
"documentation": "Spawns a child process that will run the program `program`, and returns a dictionary that describes the final status and ouput of the child process.\n\nThe second argument, `params`, can be passed as a list of string parameters to give to the program.\n\nThe third argument, `options`, can be passed as a dictionary of options to give to the child process.\nThe available options inside of the `options` dictionary are:\n* `cwd` - The current working directory for the process\n* `env` - Extra environment variables to give to the process\n* `shell` - Whether to run in a shell or not - set to `true` to run using the default shell, or a string to run using a specific shell\n* `stdio` - How to treat output and error streams from the child process - set to \"inherit\" to pass output and error streams to the current process",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/process.spawn/param/0",
|
|
"name": "program"
|
|
},
|
|
{
|
|
"documentation": "@roblox/global/process.spawn/param/1",
|
|
"name": "params"
|
|
},
|
|
{
|
|
"documentation": "@roblox/global/process.spawn/param/2",
|
|
"name": "options"
|
|
}
|
|
],
|
|
"returns": [
|
|
"@roblox/global/process.spawn/return/0"
|
|
]
|
|
},
|
|
"@roblox/global/process.spawn/param/0": {
|
|
"documentation": "The program to spawn as a child process"
|
|
},
|
|
"@roblox/global/process.spawn/param/1": {
|
|
"documentation": "Additional parameters to pass to the program"
|
|
},
|
|
"@roblox/global/process.spawn/param/2": {
|
|
"documentation": "A dictionary of options for the child process"
|
|
},
|
|
"@roblox/global/process.spawn/return/0": {
|
|
"documentation": "A dictionary representing the result of the child process"
|
|
},
|
|
"@roblox/global/stdio": {
|
|
"code_sample": "",
|
|
"documentation": "Standard input / output & utility functions",
|
|
"keys": {
|
|
"stdio": "@roblox/global/stdio.stdio"
|
|
},
|
|
"learn_more_link": ""
|
|
},
|
|
"@roblox/global/stdio.color": {
|
|
"code_sample": "",
|
|
"documentation": "Return an ANSI string that can be used to modify the persistent output color.\n\nPass `\"reset\"` to get a string that can reset the persistent output color.\n\n### Example usage\n\n```lua\nstdio.write(stdio.color(\"red\"))\nprint(\"This text will be red\")\nstdio.write(stdio.color(\"reset\"))\nprint(\"This text will be normal\")\n```",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/stdio.color/param/0",
|
|
"name": "color"
|
|
}
|
|
],
|
|
"returns": []
|
|
},
|
|
"@roblox/global/stdio.color/param/0": {
|
|
"documentation": "The color to use"
|
|
},
|
|
"@roblox/global/stdio.ewrite": {
|
|
"code_sample": "",
|
|
"documentation": "Writes a string directly to stderr, without any newline.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/stdio.ewrite/param/0",
|
|
"name": "s"
|
|
}
|
|
],
|
|
"returns": []
|
|
},
|
|
"@roblox/global/stdio.ewrite/param/0": {
|
|
"documentation": "The string to write to stderr"
|
|
},
|
|
"@roblox/global/stdio.format": {
|
|
"code_sample": "",
|
|
"documentation": "Formats arguments into a human-readable string with syntax highlighting for tables.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/stdio.format/param/0",
|
|
"name": "..."
|
|
}
|
|
],
|
|
"returns": [
|
|
"@roblox/global/stdio.format/return/0"
|
|
]
|
|
},
|
|
"@roblox/global/stdio.format/param/0": {
|
|
"documentation": "The values to format"
|
|
},
|
|
"@roblox/global/stdio.format/return/0": {
|
|
"documentation": "The formatted string"
|
|
},
|
|
"@roblox/global/stdio.style": {
|
|
"code_sample": "",
|
|
"documentation": "Return an ANSI string that can be used to modify the persistent output style.\n\nPass `\"reset\"` to get a string that can reset the persistent output style.\n\n### Example usage\n\n```lua\nstdio.write(stdio.style(\"bold\"))\nprint(\"This text will be bold\")\nstdio.write(stdio.style(\"reset\"))\nprint(\"This text will be normal\")\n```",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/stdio.style/param/0",
|
|
"name": "style"
|
|
}
|
|
],
|
|
"returns": []
|
|
},
|
|
"@roblox/global/stdio.style/param/0": {
|
|
"documentation": "The style to use"
|
|
},
|
|
"@roblox/global/stdio.write": {
|
|
"code_sample": "",
|
|
"documentation": "Writes a string directly to stdout, without any newline.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/stdio.write/param/0",
|
|
"name": "s"
|
|
}
|
|
],
|
|
"returns": []
|
|
},
|
|
"@roblox/global/stdio.write/param/0": {
|
|
"documentation": "The string to write to stdout"
|
|
},
|
|
"@roblox/global/task": {
|
|
"code_sample": "",
|
|
"documentation": "Task scheduler & thread spawning",
|
|
"keys": {
|
|
"task": "@roblox/global/task.task"
|
|
},
|
|
"learn_more_link": ""
|
|
},
|
|
"@roblox/global/task.cancel": {
|
|
"code_sample": "",
|
|
"documentation": "Stops a currently scheduled thread from resuming.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/task.cancel/param/0",
|
|
"name": "thread"
|
|
}
|
|
],
|
|
"returns": []
|
|
},
|
|
"@roblox/global/task.cancel/param/0": {
|
|
"documentation": "The thread to cancel"
|
|
},
|
|
"@roblox/global/task.defer": {
|
|
"code_sample": "",
|
|
"documentation": "Defers a thread or function to run at the end of the current task queue.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/task.defer/param/0",
|
|
"name": "functionOrThread"
|
|
}
|
|
],
|
|
"returns": [
|
|
"@roblox/global/task.defer/return/0"
|
|
]
|
|
},
|
|
"@roblox/global/task.defer/param/0": {
|
|
"documentation": "The function or thread to defer"
|
|
},
|
|
"@roblox/global/task.defer/return/0": {
|
|
"documentation": "The thread that will be deferred"
|
|
},
|
|
"@roblox/global/task.delay": {
|
|
"code_sample": "",
|
|
"documentation": "Delays a thread or function to run after `duration` seconds.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/task.delay/param/0",
|
|
"name": "functionOrThread"
|
|
}
|
|
],
|
|
"returns": [
|
|
"@roblox/global/task.delay/return/0"
|
|
]
|
|
},
|
|
"@roblox/global/task.delay/param/0": {
|
|
"documentation": "The function or thread to delay"
|
|
},
|
|
"@roblox/global/task.delay/return/0": {
|
|
"documentation": "The thread that will be delayed"
|
|
},
|
|
"@roblox/global/task.spawn": {
|
|
"code_sample": "",
|
|
"documentation": "Instantly runs a thread or function.\n\nIf the spawned task yields, the thread that spawned the task\nwill resume, letting the spawned task run in the background.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/task.spawn/param/0",
|
|
"name": "functionOrThread"
|
|
}
|
|
],
|
|
"returns": [
|
|
"@roblox/global/task.spawn/return/0"
|
|
]
|
|
},
|
|
"@roblox/global/task.spawn/param/0": {
|
|
"documentation": "The function or thread to spawn"
|
|
},
|
|
"@roblox/global/task.spawn/return/0": {
|
|
"documentation": "The thread that was spawned"
|
|
},
|
|
"@roblox/global/task.wait": {
|
|
"code_sample": "",
|
|
"documentation": "Waits for the given duration, with a minimum wait time of 10 milliseconds.",
|
|
"learn_more_link": "",
|
|
"params": [
|
|
{
|
|
"documentation": "@roblox/global/task.wait/param/0",
|
|
"name": "duration"
|
|
}
|
|
],
|
|
"returns": [
|
|
"@roblox/global/task.wait/return/0"
|
|
]
|
|
},
|
|
"@roblox/global/task.wait/param/0": {
|
|
"documentation": "The amount of time to wait"
|
|
},
|
|
"@roblox/global/task.wait/return/0": {
|
|
"documentation": "The exact amount of time waited"
|
|
}
|
|
} |