Skip to content

680 - App Manifest

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

maml
{
  name: "grass-going"
  version: "2.14.13"
  description: "Proactive interactive productivity"

  keywords: [
    "unblinking"
    "populist"
    "ideal"
  ]

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

  author: {
    name: "Rahul Kassulke"
    email: "Avery_Konopelski70@yahoo.com"
    url: "https://acceptable-cutlet.info"
  }
}

See Also