@withqwerty/sportmonks-typescript-sdk
Version:
TypeScript SDK for SportMonks Football API v3
84 lines (83 loc) • 2.08 kB
JSON
{
"name": "@withqwerty/sportmonks-typescript-sdk",
"version": "1.3.0",
"private": false,
"description": "TypeScript SDK for SportMonks Football API v3",
"keywords": [
"sportmonks",
"football",
"soccer",
"api",
"typescript",
"sdk"
],
"homepage": "https://github.com/withqwerty/sportmonks-typescript-sdk",
"repository": {
"type": "git",
"url": "https://github.com/withqwerty/sportmonks-typescript-sdk.git"
},
"license": "MIT",
"author": "Rahul Keerthi",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"clean": "rm -rf dist tsconfig.tsbuildinfo coverage",
"dev": "tsup --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"typecheck": "tsc --noEmit",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"prepublishOnly": "pnpm run clean && pnpm run build",
"size": "size-limit || echo 'Size limit not configured'"
},
"dependencies": {
"axios": "^1.6.8",
"axios-retry": "^4.1.0",
"p-queue": "^8.0.1",
"zod": "^3.25.48"
},
"devDependencies": {
"@sports-api/config-eslint": "workspace:*",
"@sports-api/config-ts": "workspace:*",
"@types/node": "^20.17.57",
"@size-limit/preset-small-lib": "^11.0.1",
"size-limit": "^11.0.1",
"tsup": "^8.0.2",
"typedoc": "^0.25.0",
"typescript": "^5.4.5",
"vitest": "^3.2.0"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "50 KB"
},
{
"path": "dist/index.mjs",
"limit": "50 KB"
}
]
}