Skip to content

3071 - App Manifest

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

maml
{
  name: "technologist-monster"
  version: "1.0.1"
  description: "Total dynamic project"

  keywords: [
    "mechanic"
    "testimonial"
    "exotic"
  ]

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

  author: {
    name: "Eileen Mann"
    email: "Emmett.Mitchell20@gmail.com"
    url: "https://awesome-middle.biz"
  }
}

See Also