Skip to content

1376 - App Manifest

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

maml
{
  name: "produce-privilege"
  version: "2.0.7"
  description: "Virtual hybrid benchmark"

  keywords: [
    "stir-fry"
    "verve"
    "equatorial"
  ]

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

  author: {
    name: "Mia Robel"
    email: "Aubree.Oberbrunner16@hotmail.com"
    url: "https://remorseful-climb.com"
  }
}

See Also