Skip to content

570 - App Manifest

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

maml
{
  name: "diver-packaging"
  version: "0.8.16"
  description: "Organic static process improvement"

  keywords: [
    "lieu"
    "summary"
    "prestigious"
  ]

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

  author: {
    name: "Marco Veum"
    email: "Madge70@gmail.com"
    url: "https://simplistic-hippodrome.name/"
  }
}

See Also