### Install using JSON output Source: https://github.com/lassejlv/pizza/blob/main/README.md Use '--json' to get installation output in a machine-readable JSON format. ```sh pizza install --json ``` -------------------------------- ### Install with verbose output Source: https://github.com/lassejlv/pizza/blob/main/README.md Use '--verbose' to enable detailed logging during the installation process. ```sh pizza install --verbose ``` -------------------------------- ### Install project dependencies Source: https://github.com/lassejlv/pizza/blob/main/README.md Use 'pizza install' to download and install all project dependencies. ```sh pizza install ``` -------------------------------- ### Install allowing all scripts Source: https://github.com/lassejlv/pizza/blob/main/README.md Use '--allow-all-scripts' to permit lifecycle scripts for all packages during a single install. ```sh pizza install --allow-all-scripts ``` -------------------------------- ### Initialize a new Pizza project Source: https://github.com/lassejlv/pizza/blob/main/README.md Use 'pizza init' to start a new project managed by Pizza. ```sh pizza init ``` -------------------------------- ### Install with frozen lockfile Source: https://github.com/lassejlv/pizza/blob/main/README.md Use '--frozen-lockfile' to ensure the install matches the lockfile exactly, preventing updates. ```sh pizza install --frozen-lockfile ``` -------------------------------- ### Install only production dependencies Source: https://github.com/lassejlv/pizza/blob/main/README.md Use '--prod' to install only production dependencies, excluding devDependencies. ```sh pizza install --prod ``` -------------------------------- ### Install allowing specific scripts Source: https://github.com/lassejlv/pizza/blob/main/README.md Use '--allow-scripts ' to permit lifecycle scripts for a specific package. ```sh pizza install --allow-scripts hitch-cli ``` -------------------------------- ### Install in offline mode Source: https://github.com/lassejlv/pizza/blob/main/README.md Use '--offline' to perform an install using only locally cached packages and metadata. ```sh pizza install --offline ``` -------------------------------- ### Install ignoring lifecycle scripts Source: https://github.com/lassejlv/pizza/blob/main/README.md Use '--ignore-scripts' to skip the execution of all package lifecycle scripts during installation. ```sh pizza install --ignore-scripts ``` -------------------------------- ### Install denying all scripts Source: https://github.com/lassejlv/pizza/blob/main/README.md Use '--deny-all-scripts' to disallow lifecycle scripts for all packages during a single install. ```sh pizza install --deny-all-scripts ``` -------------------------------- ### Get the cache path Source: https://github.com/lassejlv/pizza/blob/main/README.md Use 'pizza cache path' to display the location of the global package cache. ```sh pizza cache path ``` -------------------------------- ### Install denying specific scripts Source: https://github.com/lassejlv/pizza/blob/main/README.md Use '--deny-scripts ' to explicitly disallow lifecycle scripts for a specific package. ```sh pizza install --deny-scripts untrusted-package ``` -------------------------------- ### Create a new project with a template Source: https://github.com/lassejlv/pizza/blob/main/README.md Use 'pizza create