Skip to content

1168 - App Manifest

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

maml
{
  name: "meal-mechanic"
  version: "4.6.12"
  description: "Polarised bifurcated approach"

  keywords: [
    "galoshes"
    "tool"
    "motionless"
  ]

  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: "Clotilde Kertzmann"
    email: "Marge.Sauer@hotmail.com"
    url: "https://well-off-agreement.com"
  }
}

See Also