{
  "name": "melona",
  "version": "2.5.0",
  "description": "멜론 음원 서비스의 여러 데이터를 JSON으로 변환하는 크롤러",
  "main": "./dist/index.js",
  "scripts": {
    "build": "npm run clean && tsc --project tsconfig.json",
    "build:watch": "tsc --watch",
    "clean": "rm -rf dist",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write src/**/*.ts",
    "format:check": "prettier --check src/**/*.ts",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "prepack": "npm run clean && npm run build",
    "prepublishOnly": "npm run lint && npm run test && npm run build",
    "release:patch": "npm version patch && npm publish",
    "release:minor": "npm version minor && npm publish",
    "release:major": "npm version major && npm publish",
    "release:dry": "npm publish --dry-run",
    "version:check": "npm version --help",
    "pack:local": "npm pack",
    "size": "npm pack --dry-run",
    "preview": "npm pack && tar -tzf melona-*.tgz"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vientorepublic/melona.git"
  },
  "author": "vientorepublic",
  "license": "MIT",
  "keywords": [
    "melon",
    "web crawler",
    "web scraper"
  ],
  "bugs": {
    "url": "https://github.com/vientorepublic/melona/issues"
  },
  "homepage": "https://github.com/vientorepublic/melona#readme",
  "dependencies": {
    "cheerio": "^1.0.0"
  },
  "devDependencies": {
    "@eslint/js": "^9.18.0",
    "@types/cheerio": "^1.0.0",
    "@types/jest": "^30.0.0",
    "eslint": "^9.18.0",
    "jest": "^30.0.0",
    "prettier": "^3.4.2",
    "ts-jest": "^29.2.5",
    "typescript": "^5.7.3",
    "typescript-eslint": "^8.20.0"
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "testMatch": [
      "**/*.test.ts"
    ]
  }
}
