Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
.json
{ "name": "bun", "version": "1.0.0", "author": { "name": "John Dough", "email": "john@dough.com" } }
import data from "./package.json"; data.name; // => "bun" data.version; // => "1.0.0" data.author.name; // => "John Dough"
import data from "./package.json" with { type: "json" }; data.name; // => "bun" data.version; // => "1.0.0" data.author.name; // => "John Dough"
Was this page helpful?