Skip to content

1166 - App Manifest

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

maml
{
  name: "pillbox-eternity"
  version: "1.20.6"
  description: "Managed leading edge methodology"

  keywords: [
    "avalanche"
    "instructor"
    "grimy"
  ]

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

  author: {
    name: "Dena Spencer"
    email: "Krystal30@gmail.com"
    url: "https://zealous-horde.name/"
  }
}

See Also