UNPKG

@blizzard-api/client

Version:

A node.js client to integrate with the blizzard battle.net api.

67 lines 1.43 kB
{ "name": "@blizzard-api/client", "version": "4.0.0", "license": "MIT", "author": "Putro", "description": "A node.js client to integrate with the blizzard battle.net api.", "repository": { "type": "git", "url": "git+https://github.com/Pewtro/blizzard-api.git", "directory": "packages/client" }, "type": "module", "engines": { "node": "^22.13.0 || ^24 || ^26" }, "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { "import": { "@blizzard-api/source": "./src/index.ts", "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "files": [ "dist" ], "keywords": [ "blizzard", "battlenet", "battle.net", "bnet", "api", "world of warcraft", "warcraft", "wow", "classic", "retail", "starcraft", "sc2", "diablo", "d3", "hs", "hearthstone" ], "dependencies": { "ky": "2.0.2" }, "peerDependencies": { "@blizzard-api/core": "4.0.0" }, "devDependencies": { "@blizzard-api/classic-wow": "4.0.0", "@blizzard-api/core": "4.0.0", "@blizzard-api/d3": "3.0.0", "@blizzard-api/hs": "3.0.0", "@blizzard-api/sc2": "3.0.0", "@blizzard-api/wow": "4.0.0" }, "scripts": { "build": "tsdown", "dev": "tsdown --watch", "test": "vitest run", "test:coverage": "pnpm test -- --coverage", "test:watch": "vitest watch" } }