Skip to content

875 - App Manifest

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

maml
{
  name: "bookcase-design"
  version: "4.20.11"
  description: "Smart intangible time-frame"

  keywords: [
    "spork"
    "ribbon"
    "sandy"
  ]

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

  author: {
    name: "Thurman Heaney"
    email: "Tommy_Ledner-Bahringer@hotmail.com"
    url: "https://dramatic-pleasure.biz/"
  }
}

See Also