Skip to content

1672 - App Manifest

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

maml
{
  name: "crest-embossing"
  version: "3.9.3"
  description: "Horizontal attitude-oriented model"

  keywords: [
    "deduction"
    "bourgeoisie"
    "lawful"
  ]

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

  author: {
    name: "Mr. Wendell Feest"
    email: "Kelley_Quitzon@hotmail.com"
    url: "https://kaleidoscopic-permafrost.info/"
  }
}

See Also