{
  "name": "node-tidal",
  "type": "module",
  "version": "1.2.0",
  "description": "Unofficial TIDAL API wrapper.",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/**/*"
  ],
  "exports": {
    ".": {
      "require": "./dist/index.cjs",
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "scripts": {
    "clean": "rimraf -rf ./dist && rimraf -rf nodes_modules",
    "build": "npm run clean && tsup",
    "prepack": "npm run build",
    "test": "mocha",
    "lint": "eslint --ignore-path .gitignore",
    "prettier": "prettier --ignore-path .gitignore --write .",
    "docs": "typedoc --entryPointStrategy expand ./src  --readme none --plugin typedoc-plugin-markdown --out docs "
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Mawco/node-tidal.git"
  },
  "keywords": [
    "Tidal",
    "Music"
  ],
  "author": "Marco (https://github.com/Mawco)",
  "contributors": [
    "glazk0 (https://github.com/glazk0)",
    "delight (https://github.com/delight)"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Mawco/node-tidal/issues"
  },
  "homepage": "https://github.com/Mawco/node-tidal#readme",
  "dependencies": {
    "axios": "^1.1.3"
  },
  "devDependencies": {
    "@glazk0/prettier-config": "^1.0.0",
    "@types/chai": "^4.3.3",
    "@types/mocha": "^10.0.0",
    "@types/node-fetch": "^2.6.2",
    "@typescript-eslint/eslint-plugin": "^5.40.0",
    "chai": "^4.3.6",
    "dotenv": "^16.0.3",
    "eslint": "^8.25.0",
    "eslint-config-prettier": "^8.5.0",
    "mocha": "^10.1.0",
    "prettier": "^2.7.1",
    "ts-node": "^10.9.1",
    "tsup": "^6.3.0",
    "typedoc": "^0.23.17",
    "typedoc-plugin-markdown": "^3.13.6",
    "typescript": "^4.8.4"
  },
  "tsup": {
    "entry": [
      "src/"
    ],
    "format": [
      "cjs",
      "esm"
    ],
    "splitting": false,
    "sourcemap": false,
    "clean": true,
    "dts": true
  }
}
