{
  "name": "kc-sf-plugin",
  "description": "Various commands for enabling salesforce development, including automated apex trigger framework generation.",
  "version": "1.4.19",
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "main": "src/index.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/k-capehart/kc-sf-plugin.git"
  },
  "bugs": {
    "url": "https://github.com/k-capehart/kc-sf-plugin/issues"
  },
  "homepage": "https://github.com/k-capehart/kc-sf-plugin",
  "dependencies": {
    "@oclif/core": "^4.2.10",
    "@salesforce/core": "^8.8.7",
    "@salesforce/sf-plugins-core": "^12.2.1",
    "@salesforce/source-deploy-retrieve": "^12.18.0",
    "@salesforce/source-tracking": "^7.3.19",
    "@salesforce/ts-sinon": "^1.4.30",
    "@salesforce/ts-types": "^2.0.12",
    "chalk": "^5.4.1",
    "fast-xml-parser": "^5.0.9",
    "fs-extra": "^11.3.0"
  },
  "devDependencies": {
    "@oclif/plugin-command-snapshot": "^5.2.38",
    "@salesforce/cli-plugins-testkit": "^5.3.39",
    "@salesforce/dev-scripts": "^11.0.2",
    "@types/fs-extra": "^11.0.4",
    "@types/yeoman-assert": "^3.1.4",
    "eslint-plugin-sf-plugin": "^1.20.18",
    "oclif": "^4.17.42",
    "shx": "0.4.0",
    "ts-node": "^10.9.2",
    "typescript": "^5.8.2",
    "yeoman-assert": "^3.1.1"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "/lib",
    "/messages",
    "/oclif.manifest.json",
    "/oclif.lock"
  ],
  "keywords": [
    "force",
    "salesforce",
    "salesforcedx",
    "sf",
    "sf-plugin",
    "sfdx",
    "sfdx-plugin",
    "trigger-framework"
  ],
  "license": "BSD-3-Clause",
  "oclif": {
    "commands": "./lib/commands",
    "bin": "sf",
    "topicSeparator": " ",
    "devPlugins": [
      "@oclif/plugin-help"
    ],
    "topics": {
      "kc": {
        "description": "custom commands built by github.com/k-capehart"
      }
    },
    "flexibleTaxonomy": true
  },
  "resolutions": {
    "path-to-regexp": "1.9.0"
  },
  "scripts": {
    "build": "wireit",
    "clean": "sf-clean",
    "clean-all": "sf-clean all",
    "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",
    "docs": "sf-docs",
    "format": "wireit",
    "lint": "wireit",
    "postpack": "shx rm -f oclif.manifest.json oclif.lock",
    "prepack": "sf-prepack",
    "test": "wireit",
    "test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
    "test:only": "wireit",
    "version": "oclif readme"
  },
  "wireit": {
    "build": {
      "dependencies": [
        "compile",
        "lint"
      ]
    },
    "compile": {
      "command": "tsc -p . --pretty --incremental && cp -r src/templates/ lib/templates/",
      "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": "nyc mocha \"test/**/*.test.ts\"",
      "env": {
        "FORCE_COLOR": "2"
      },
      "files": [
        "test/**/*.ts",
        "src/**/*.ts",
        "**/tsconfig.json",
        ".mocha*",
        "!*.nut.ts",
        ".nycrc"
      ],
      "output": []
    },
    "test:command-reference": {
      "command": "\"./bin/dev\" commandreference:generate --erroronwarnings",
      "files": [
        "src/**/*.ts",
        "messages/**",
        "package.json"
      ],
      "output": [
        "tmp/root"
      ]
    },
    "test:deprecation-policy": {
      "command": "\"./bin/dev\" snapshot:compare",
      "files": [
        "src/**/*.ts"
      ],
      "output": [],
      "dependencies": [
        "compile"
      ]
    },
    "test:json-schema": {
      "command": "\"./bin/dev\" schema:compare",
      "files": [
        "src/**/*.ts",
        "schemas"
      ],
      "output": []
    }
  },
  "exports": "./lib/index.js",
  "type": "module",
  "author": "k-capehart"
}
