Skip to content

863 - App Manifest

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

maml
{
  name: "mobility-cork"
  version: "0.11.15"
  description: "User-friendly eco-centric analyzer"

  keywords: [
    "hoof"
    "foodstuffs"
    "filthy"
  ]

  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: "Flavio Hane"
    email: "Marcos_Smith60@gmail.com"
    url: "https://winged-fowl.name"
  }
}

See Also