An open API service indexing awesome lists of open source software.

https://github.com/compeydev/bun-lune-loader

Bun plugin for importing lua & luau using lune, the standalone luau script runtime.
https://github.com/compeydev/bun-lune-loader

Last synced: 8 months ago
JSON representation

Bun plugin for importing lua & luau using lune, the standalone luau script runtime.

Awesome Lists containing this project

README

          

# bun-luau-loader

Allows to import lua/luau files in TypeScript. Requires Lune.

```lua
-- module.luau
return {
SomeKey = "SomeValue"
}
```

```ts
// index.ts
import { SomeKey } from "./module.luau"
```