Skip to content

175 - App Manifest

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

maml
{
  name: "gift-chops"
  version: "5.16.18"
  description: "Visionary interactive software"

  keywords: [
    "disk"
    "executor"
    "huge"
  ]

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

  author: {
    name: "Gladys Crist"
    email: "Moriah.Conroy@gmail.com"
    url: "https://flowery-wasabi.info"
  }
}

See Also