@blizzard-api/client
Version:
A node.js client to integrate with the blizzard battle.net api.
63 lines • 1.38 kB
JSON
{
"name": "@blizzard-api/client",
"version": "2.2.1",
"license": "MIT",
"author": "Putro",
"description": "A node.js client to integrate with the blizzard battle.net api.",
"repository": "https://github.com/Pewtro/blizzard-api/tree/main/packages/client",
"type": "module",
"engines": {
"node": "^18.18 || >=20.9"
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"@blizzard-api/client-local": "./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": "1.8.2"
},
"peerDependencies": {
"@blizzard-api/core": "2.1.1"
},
"devDependencies": {
"@blizzard-api/classic-wow": "2.1.3",
"@blizzard-api/core": "2.1.1",
"@blizzard-api/d3": "1.0.5",
"@blizzard-api/hs": "1.0.5",
"@blizzard-api/sc2": "1.0.5",
"@blizzard-api/wow": "2.1.0"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"test:coverage": "pnpm test -- --coverage",
"test:watch": "vitest watch"
}
}