Skip to content

665 - App Manifest

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

maml
{
  name: "joy-horst"
  version: "8.1.11"
  description: "Expanded cohesive structure"

  keywords: [
    "responsibility"
    "sesame"
    "livid"
  ]

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

  author: {
    name: "Mortimer Nienow"
    email: "Darrell_Lesch@hotmail.com"
    url: "https://dense-disadvantage.name"
  }
}

See Also