UNPKG

starforged-cli

Version:

My goal is for this to be an easy-to-use CLI for playing Starforged solo. If your game ends up in a broken state of some sort, and no command yet exists to fix your issue, all of the game data you accumulate is stored in `~/starforged-cli/db.json` and you

9 lines (6 loc) 168 B
const { readDb } = require("./db"); async function getLoreEntry(name) { const data = await readDb(); return data.lore[name]; } module.exports = { getLoreEntry };