Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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: about 7 hours 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"
```