Skip to content

968 - App Manifest

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

maml
{
  name: "hunger-chiffonier"
  version: "2.20.13"
  description: "Immersive zero trust capability"

  keywords: [
    "requirement"
    "fork"
    "warm"
  ]

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

  author: {
    name: "Sara Swift"
    email: "Tomasa90@hotmail.com"
    url: "https://left-finger.com/"
  }
}

See Also