Skip to content

1068 - App Manifest

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

maml
{
  name: "membership-zebra"
  version: "9.3.1"
  description: "Robust attitude-oriented website"

  keywords: [
    "kinase"
    "paintwork"
    "powerless"
  ]

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

  author: {
    name: "Declan Moen"
    email: "Geoffrey.Padberg@hotmail.com"
    url: "https://outlandish-apricot.name"
  }
}

See Also