Skip to content

1077 - App Manifest

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

maml
{
  name: "goat-final"
  version: "3.11.6"
  description: "Quality-focused data-driven capability"

  keywords: [
    "priesthood"
    "joy"
    "shameful"
  ]

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

  author: {
    name: "Luz Grimes"
    email: "Ayana97@hotmail.com"
    url: "https://normal-turret.net/"
  }
}

See Also