{
  "name": "sf-package-combiner",
  "description": "Combine multiple Salesforce manifest files (package.xml) into 1 file for deployments.",
  "version": "2.9.0",
  "dependencies": {
    "@oclif/core": "4.8.0",
    "@salesforce/core": "8.25.0",
    "@salesforce/sf-plugins-core": "12.2.6",
    "@salesforce/source-deploy-retrieve": "12.36.0",
    "fast-xml-builder": "1.1.7"
  },
  "devDependencies": {
    "@commitlint/config-conventional": "20.5.0",
    "@oclif/plugin-command-snapshot": "5.3.8",
    "@salesforce/cli-plugins-testkit": "5.3.41",
    "@salesforce/dev-config": "4.3.3",
    "@salesforce/prettier-config": "0.0.4",
    "@types/node": "20.19.39",
    "@vitest/coverage-v8": "4.1.5",
    "eslint-config-salesforce-typescript": "4.0.1",
    "eslint-plugin-sf-plugin": "1.20.33",
    "husky": "9.1.7",
    "oclif": "4.22.73",
    "shx": "0.4.0",
    "ts-node": "10.9.2",
    "typescript": "5.8.2",
    "vitest": "4.1.5",
    "wireit": "0.14.12"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "files": [
    "/lib",
    "/messages",
    "/oclif.manifest.json",
    "/oclif.lock",
    "/CHANGELOG.md"
  ],
  "keywords": [
    "force",
    "salesforce",
    "salesforcedx",
    "sf",
    "sf-plugin",
    "sfdx",
    "sfdx-plugin",
    "package.xml",
    "manifest",
    "combiner",
    "deployment"
  ],
  "license": "MIT",
  "oclif": {
    "commands": "./lib/commands",
    "bin": "sf",
    "topicSeparator": " ",
    "devPlugins": [
      "@oclif/plugin-help"
    ],
    "topics": {
      "sfpc": {
        "description": "description for sfpc"
      }
    },
    "flexibleTaxonomy": true
  },
  "scripts": {
    "build": "wireit",
    "clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json oclif.lock",
    "compile": "wireit",
    "format": "wireit",
    "link-check": "wireit",
    "lint": "wireit",
    "postpack": "shx rm -f oclif.manifest.json oclif.lock",
    "prepack": "wireit",
    "prepare": "husky install",
    "test": "wireit",
    "test:nuts": "oclif manifest && vitest run --config ./vitest.nut.config.ts",
    "test:only": "wireit",
    "version": "oclif readme"
  },
  "publishConfig": {
    "access": "public"
  },
  "wireit": {
    "build": {
      "dependencies": [
        "compile",
        "lint"
      ]
    },
    "compile": {
      "command": "tsc -p . --pretty --incremental",
      "files": [
        "src/**/*.ts",
        "**/tsconfig.json",
        "messages/**"
      ],
      "output": [
        "lib/**",
        "*.tsbuildinfo"
      ],
      "clean": "if-file-deleted"
    },
    "format": {
      "command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\"",
      "files": [
        "src/**/*.ts",
        "test/**/*.ts",
        "schemas/**/*.json",
        "command-snapshot.json",
        ".prettier*"
      ],
      "output": []
    },
    "lint": {
      "command": "eslint src test --color --cache --cache-location .eslintcache",
      "files": [
        "src/**/*.ts",
        "test/**/*.ts",
        "messages/**",
        "**/.eslint*",
        "**/tsconfig.json"
      ],
      "output": []
    },
    "test:compile": {
      "command": "tsc -p \"./test\" --pretty",
      "files": [
        "test/**/*.ts",
        "**/tsconfig.json"
      ],
      "output": []
    },
    "test": {
      "dependencies": [
        "test:compile",
        "test:only",
        "lint"
      ]
    },
    "test:only": {
      "command": "vitest run --coverage",
      "env": {
        "FORCE_COLOR": "2"
      },
      "files": [
        "test/**/*.ts",
        "src/**/*.ts",
        "**/tsconfig.json",
        "vitest.config.ts",
        "!*.nut.ts"
      ],
      "output": []
    },
    "test:command-reference": {
      "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" commandreference:generate --erroronwarnings",
      "files": [
        "src/**/*.ts",
        "messages/**",
        "package.json"
      ],
      "output": [
        "tmp/root"
      ]
    },
    "test:deprecation-policy": {
      "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" snapshot:compare",
      "files": [
        "src/**/*.ts"
      ],
      "output": [],
      "dependencies": [
        "compile"
      ]
    },
    "test:json-schema": {
      "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" schema:compare",
      "files": [
        "src/**/*.ts",
        "schemas"
      ],
      "output": []
    },
    "link-check": {
      "command": "node -e \"process.exit(process.env.CI ? 0 : 1)\" || linkinator \"**/*.md\" --skip \"CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|my.salesforce.com|%s\" --markdown --retry --directory-listing --verbosity error",
      "files": [
        "./*.md",
        "./!(CHANGELOG).md",
        "messages/**/*.md"
      ],
      "output": []
    },
    "prepack": {
      "command": "oclif manifest && oclif readme",
      "files": [
        "src/commands/sfpc/combine.ts",
        "messages/sfpc.combine.md",
        "README.md"
      ],
      "dependencies": [
        "build"
      ],
      "output": [
        "README.md"
      ],
      "clean": false
    }
  },
  "exports": "./lib/index.js",
  "type": "module",
  "author": "Matt Carvin",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mcarvin8/sf-package-combiner.git"
  },
  "bugs": {
    "url": "https://github.com/mcarvin8/sf-package-combiner/issues"
  }
}
