Goobits Terminal - zsh
goobits:~/public cat humans.txt
   ____             _     _ _
  / ___| ___   ___ | |__ (_) |_ ___
 | |  _ / _ \ / _ \| '_ \| | __/ __|
 | |_| | (_) | (_) | |_) | | |_\__ \
  \____|\___/ \___/|_.__/|_|\__|___/
/** * @class Team * People behind the site's product, code, and design. */
class Team {
constructor() {
// Creator and CTO.
this.creatorCto = "Miko Meow";

// CEO.
this.ceo = "Nick James";
}
}
/** * @class Contributors * Community and open source work that helps Goobits exist. */
class Contributors {
constructor() {
this.community = [
// Shared package, protocol, and tooling foundations. (https://github.com/goobits)
"Open source maintainers"
];
}
}
/** * Libraries used in this site */
const libraries = [
{
name: "Svelte",
author: "Svelte contributors",
url: "https://svelte.dev",
license: "MIT"
},
{
name: "SvelteKit",
author: "Svelte contributors",
url: "https://svelte.dev/docs/kit",
license: "MIT"
},
{
name: "Vite",
author: "Vite contributors",
url: "https://vite.dev",
license: "MIT"
},
{
name: "TypeScript",
author: "Microsoft",
url: "https://www.typescriptlang.org",
license: "Apache-2.0"
},
{
name: "Yjs",
author: "Yjs contributors",
url: "https://yjs.dev",
license: "MIT"
}
]
/** * Special thanks to all contributors and the community. */