Skip to content

775 - App Manifest

Full application manifest with metadata, dependencies, and scripts. This is an example of a MAML document.

maml
{
  name: "yogurt-hamburger"
  version: "7.18.6"
  description: "Balanced contextually-based structure"

  keywords: [
    "address"
    "statue"
    "shady"
  ]

  scripts: {
    dev: "node server.js --watch"
    build: "tsc && esbuild src/index.ts --bundle --outfile=dist/index.js"
    test: "vitest"
    lint: "oxlint"
  }
  engines: {
    node: ">=22"
  }

  author: {
    name: "Arnold Koelpin"
    email: "Jarvis.Moore@yahoo.com"
    url: "https://difficult-jump.com/"
  }
}

See Also