Skip to content

1374 - App Manifest

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

maml
{
  name: "velocity-beret"
  version: "2.0.4"
  description: "Programmable bifurcated middleware"

  keywords: [
    "scout"
    "monocle"
    "funny"
  ]

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

  author: {
    name: "Anthony Dickinson"
    email: "Fabian_Schultz5@gmail.com"
    url: "https://handsome-captain.name/"
  }
}

See Also