Skip to content

2166 - App Manifest

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

maml
{
  name: "marten-vein"
  version: "3.8.8"
  description: "Quality-focused motivating hub"

  keywords: [
    "thyme"
    "bandwidth"
    "yearly"
  ]

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

  author: {
    name: "Phoebe Leuschke"
    email: "Rebecca.Erdman@yahoo.com"
    url: "https://waterlogged-dress.com/"
  }
}

See Also