Convert Lua tables to and from JSON.
yarn add lua-json
const { format, parse } = require('lua-json')
format({ x: 1 }) // 'return { x = 1 }'
parse('return { x = 1 }') // { x: 1 }
type Json = null | boolean | number | string | Json[] | { [_: string]: Json }
format(
value: Json,
options?: {
eol: string = '\n',
singleQuote: boolean = true,
spaces: null | number | string = 2,
}
): string
parse(value: string): Json
- More formatting options à la prettier:
printWidth
(!),trailingComma
,bracketSpacing
.