Skip to content

1763 - App Manifest

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

maml
{
  name: "wedding-traditionalism"
  version: "2.6.14"
  description: "Customer-focused optimizing hardware"

  keywords: [
    "poetry"
    "fog"
    "outrageous"
  ]

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

  author: {
    name: "Queenie Corwin"
    email: "Emmy89@gmail.com"
    url: "https://square-decryption.name"
  }
}

See Also