UNPKG

@sports-sdk/sleeper

Version:

A package for interacting with the Sleeper public API

71 lines 1.55 kB
{ "name": "@sports-sdk/sleeper", "description": "A package for interacting with the Sleeper public API", "repository": { "type": "git", "url": "https://github.com/sharpselections/sports-sdk-js.git", "directory": "packages/sleeper" }, "license": "MIT", "keywords": [ "sleeper", "sports", "fantasy sports", "NFL", "NBA", "EPL", "LA LIGA", "sports data" ], "version": "3.1.1", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "sideEffects": false, "files": [ "dist/**" ], "dependencies": { "axios": "^1.7.2", "zod": "^3.23.8", "@sports-sdk/core": "3.0.0" }, "peerDependencies": { "typescript": ">=4.5.0" }, "devDependencies": { "tsup": "^8.1.0", "typescript": "^5.3.3", "@types/jest": "^29.5.12", "jest": "^29.7.0", "nock": "^13.5.4", "ts-jest": "^29.1.5", "@types/node": "^20.14.10", "dotenv": "^16.4.5", "@sports-sdk/eslint-config": "0.0.0", "@sports-sdk/testing": "0.0.0", "@sports-sdk/tsconfig": "0.0.0", "@sports-sdk/jest": "0.0.0" }, "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.js", "types": "./dist/index.d.ts" }, "./package.json": "./package.json" }, "engines": { "node": ">=14" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "lint": "eslint src/", "typecheck": "tsc --noEmit", "test": "jest" } }