{
  "name": "chess-moves",
  "private": false,
  "version": "1.3.1",
  "author": {
    "name": "James Teague II",
    "email": "james@teague.dev"
  },
  "keywords": [
    "chess",
    "typescript"
  ],
  "license": "GPL-3.0-or-later",
  "repository": {
    "type": "git",
    "url": "https://github.com/JamesTeague/chess-moves.git"
  },
  "bugs": {
    "url": "https://github.com/JamesTeague/chess-moves/issues"
  },
  "homepage": "https://github.com/JamesTeague/chess-moves#readme",
  "files": [
    "dist"
  ],
  "main": "./dist/chess-moves.umd.js",
  "module": "./dist/chess-moves.es.js",
  "exports": {
    ".": {
      "import": "./dist/chess-moves.es.js",
      "require": "./dist/chess-moves.umd.js"
    }
  },
  "types": "./dist/index.d.ts",
  "devDependencies": {
    "@commitlint/cli": "^17.0.2",
    "@commitlint/config-conventional": "^17.0.2",
    "@commitlint/cz-commitlint": "^17.0.0",
    "@semantic-release/changelog": "^6.0.1",
    "@semantic-release/git": "^10.0.1",
    "@types/chess.js": "^0.13.1",
    "@types/node": "^17.0.42",
    "@typescript-eslint/eslint-plugin": "^5.27.1",
    "@typescript-eslint/parser": "^5.27.1",
    "c8": "^7.11.3",
    "commitizen": "^4.2.4",
    "eslint": "^8.17.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.0.0",
    "husky": "^8.0.1",
    "prettier": "^2.6.2",
    "semantic-release": "^19.0.3",
    "typescript": "^4.5.4",
    "vite": "^2.9.9",
    "vite-plugin-dts": "^1.2.0",
    "vitest": "^0.14.2"
  },
  "dependencies": {
    "@mliebelt/pgn-parser": "^1.4.4",
    "chess.js": "^0.13.2",
    "chessground": "^8.2.1"
  },
  "config": {
    "commitizen": {
      "path": "@commitlint/cz-commitlint"
    }
  },
  "scripts": {
    "build": "tsc && vite build",
    "commit": "git-cz",
    "dev": "vite",
    "preview": "vite preview",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage"
  }
}