Skip to content

1566 - App Manifest

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

maml
{
  name: "precedent-gift"
  version: "5.14.18"
  description: "Optional value-added encoding"

  keywords: [
    "pants"
    "eyebrow"
    "likable"
  ]

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

  author: {
    name: "Herman Stroman"
    email: "Flo_Hoppe26@hotmail.com"
    url: "https://grown-spork.name/"
  }
}

See Also