Skip to content

966 - App Manifest

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

maml
{
  name: "maestro-charlatan"
  version: "0.1.12"
  description: "Organic secondary focus group"

  keywords: [
    "scratch"
    "baseboard"
    "primary"
  ]

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

  author: {
    name: "Stephen Sanford"
    email: "Darlene_Rogahn5@yahoo.com"
    url: "https://idealistic-tenant.com"
  }
}

See Also