{
  "name": "@card-games/engine",
  "version": "1.1.1",
  "description": "A template for creating npm packages using TypeScript and VSCode",
  "main": "./lib/index.js",
  "typings": "./lib/index.d.ts",
  "files": [
    "lib/**/*"
  ],
  "private": false,
  "scripts": {
    "gen:docs:extract": "npx api-extractor run -l -v",
    "gen:docs:markdown": "npx api-documenter markdown -i temp -o docs",
    "gen:docs": "npm run clean && npm run build && npm run gen:docs:extract && npm run gen:docs:markdown && npm run clean",
    "build": "tsc --project tsconfig.build.json",
    "clean:temp": "rm -rf ./temp/",
    "clean:build": "rm -rf ./lib/",
    "clean": "npm run clean:build && npm run clean:temp",
    "cm": "cz",
    "lint": "eslint ./src/ --fix",
    "prepare": "husky install",
    "semantic-release": "semantic-release",
    "test:watch": "jest --watch",
    "test": "jest --coverage",
    "typecheck": "tsc --noEmit"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jcgertig/card-games-engine.git"
  },
  "license": "MIT",
  "author": {
    "name": "Jonathan Gertig",
    "email": "jcgertig@users.noreply.github.com",
    "url": "https://github.com/jcgertig"
  },
  "engines": {
    "node": ">=12.0"
  },
  "keywords": [
    "card",
    "games",
    "typescript",
    "engine",
    "rules",
    "deuces",
    "bids",
    "hearts"
  ],
  "bugs": {
    "url": "https://github.com/jcgertig/card-games-engine/issues"
  },
  "homepage": "https://github.com/jcgertig/card-games-engine#readme",
  "devDependencies": {
    "@microsoft/api-documenter": "^7.19.27",
    "@microsoft/api-extractor": "^7.33.7",
    "@ryansonshine/commitizen": "^4.2.8",
    "@ryansonshine/cz-conventional-changelog": "^3.3.4",
    "@types/jest": "^27.5.2",
    "@types/lodash": "^4.14.159",
    "@types/node": "^12.20.11",
    "@typescript-eslint/eslint-plugin": "^4.22.0",
    "@typescript-eslint/parser": "^4.22.0",
    "conventional-changelog-conventionalcommits": "^5.0.0",
    "eslint": "^7.25.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^3.4.0",
    "husky": "^6.0.0",
    "jest": "^27.2.0",
    "lint-staged": "^10.5.4",
    "lodash": "^4.17.19",
    "prettier": "^2.2.1",
    "semantic-release": "^19.0.2",
    "ts-jest": "^27.0.5",
    "ts-node": "^10.2.1",
    "typescript": "^4.2.4"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/@ryansonshine/cz-conventional-changelog"
    }
  },
  "lint-staged": {
    "*.ts": "eslint --cache --cache-location .eslintcache --fix"
  },
  "release": {
    "branches": [
      "main"
    ],
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "preset": "conventionalcommits",
          "releaseRules": [
            {
              "type": "build",
              "scope": "deps",
              "release": "patch"
            }
          ]
        }
      ],
      [
        "@semantic-release/release-notes-generator",
        {
          "preset": "conventionalcommits",
          "presetConfig": {
            "types": [
              {
                "type": "feat",
                "section": "Features"
              },
              {
                "type": "fix",
                "section": "Bug Fixes"
              },
              {
                "type": "build",
                "section": "Dependencies and Other Build Updates",
                "hidden": false
              }
            ]
          }
        }
      ],
      "@semantic-release/npm",
      "@semantic-release/github"
    ]
  },
  "publishConfig": {
    "access": "public"
  }
}
