Skip to content

071 - App Manifest

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

maml
{
  name: "restaurant-ownership"
  version: "4.3.3"
  description: "Secured regional knowledge user"

  keywords: [
    "unit"
    "casket"
    "honored"
  ]

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

  author: {
    name: "Stephen Hane"
    email: "Tate.Durgan-Lubowitz2@hotmail.com"
    url: "https://utter-receptor.net"
  }
}

See Also