Skip to content

462 - App Manifest

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

maml
{
  name: "leading-account"
  version: "7.9.5"
  description: "Focused value-added interface"

  keywords: [
    "fit"
    "defendant"
    "crushing"
  ]

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

  author: {
    name: "Irma Maggio"
    email: "Lula_Huel@yahoo.com"
    url: "https://far-extension.biz"
  }
}

See Also