{
  "name": "stardew-valley-data",
  "version": "1.0.1",
  "description": "A comprehensive, fully-typed dataset for Stardew Valley — structured JSON data, 1,900+ image assets, and a chainable query builder API.",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./data/*": "./data/*",
    "./images/*": "./images/*"
  },
  "sideEffects": false,
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "lint": "tsc --noEmit && eslint .",
    "format": "prettier --write \"**/*.ts\" \"**/*.md\" \"**/*.json\"",
    "format:check": "prettier --check \"**/*.ts\" \"**/*.md\" \"**/*.json\"",
    "sample": "tsx sample/index.ts",
    "typecheck": "tsc --noEmit",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "prepare": "husky"
  },
  "keywords": [
    "stardew-valley",
    "stardew",
    "game-data",
    "json",
    "dataset",
    "typescript",
    "query-builder",
    "crops",
    "fish",
    "villagers",
    "items",
    "monsters",
    "weapons",
    "cooking",
    "crafting",
    "mining",
    "fishing",
    "save-file"
  ],
  "author": "Christopher Pezza",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/chiefpansancolt/stardew-valley-data.git"
  },
  "homepage": "https://github.com/chiefpansancolt/stardew-valley-data#readme",
  "bugs": {
    "url": "https://github.com/chiefpansancolt/stardew-valley-data/issues"
  },
  "engines": {
    "node": ">=24"
  },
  "devDependencies": {
    "@trivago/prettier-plugin-sort-imports": "^6.0.2",
    "@types/jest": "^30.0.0",
    "@types/node": "^25.5.0",
    "@typescript-eslint/eslint-plugin": "^8.57.2",
    "@typescript-eslint/parser": "^8.57.2",
    "eslint": "^10.1.0",
    "eslint-config-prettier": "^10.1.8",
    "husky": "^9.1.7",
    "jest": "^30.3.0",
    "prettier": "^3.8.1",
    "ts-jest": "^29.4.6",
    "tsup": "^8.5.1",
    "tsx": "^4.21.0",
    "typescript": "^6.0.2"
  },
  "files": [
    "dist",
    "data",
    "images",
    "LICENSE",
    "README.md",
    "CHANGELOG.md"
  ],
  "dependencies": {
    "fast-xml-parser": "^5.5.9"
  }
}
