Skip to content

1471 - App Manifest

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

maml
{
  name: "cantaloupe-address"
  version: "2.2.8"
  description: "Digitized impactful artificial intelligence"

  keywords: [
    "circumference"
    "intellect"
    "unaware"
  ]

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

  author: {
    name: "Leigh Mraz"
    email: "Rosalie79@yahoo.com"
    url: "https://rotten-tusk.net"
  }
}

See Also