{
  "name": "candlestick",
  "version": "1.2.0",
  "description": "JavaScript library for candlestick patterns detection.",
  "homepage": "https://github.com/cm45t3r/candlestick",
  "author": {
    "name": "cm45t3r",
    "url": "https://github.com/cm45t3r"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cm45t3r/candlestick.git"
  },
  "bugs": {
    "url": "https://github.com/cm45t3r/candlestick/issues"
  },
  "license": "MIT",
  "keywords": [
    "candlestick-data",
    "candlestick-pattern-detection",
    "candlestick-pattern",
    "candlestick-patterns-detection",
    "candlestick-patterns",
    "candlestick",
    "candlesticks-pattern",
    "candlesticks",
    "javascript-library",
    "javascript",
    "ohlc",
    "technical-analysis-indicators",
    "technical-analysis-library",
    "technical-analysis-methods",
    "technical-analysis",
    "technical-indicators",
    "trading",
    "stocks",
    "forex",
    "crypto",
    "chart-patterns"
  ],
  "files": [
    "src/",
    "types/",
    "cli/",
    "bin/",
    "CHANGELOG.md",
    "index.js",
    "LICENSE",
    "package-lock.json",
    "package.json",
    "README.md"
  ],
  "bin": {
    "candlestick": "bin/candlestick"
  },
  "exports": {
    ".": {
      "import": "./src/index.mjs",
      "require": "./index.js",
      "types": "./types/index.d.ts"
    }
  },
  "main": "index.js",
  "module": "src/index.mjs",
  "types": "types/index.d.ts",
  "sideEffects": false,
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/cm45t3r"
  },
  "scripts": {
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "test": "node --test",
    "test:watch": "node --test --watch",
    "coverage": "c8 --reporter=text --reporter=lcov npm test",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "bench": "node benchmark.js",
    "prepublishOnly": "npm run lint && npm test"
  },
  "engines": {
    "node": ">=18"
  },
  "devDependencies": {
    "@eslint/eslintrc": "latest",
    "@eslint/js": "latest",
    "c8": "latest",
    "eslint": "latest",
    "eslint-config-prettier": "latest",
    "fast-check": "^4.3.0",
    "prettier": "latest"
  }
}
