UNPKG

uefa-api

Version:

Typescript bindings and utils for the UEFA APIs

55 lines (54 loc) 1.29 kB
{ "name": "uefa-api", "version": "1.0.2", "description": "Typescript bindings and utils for the UEFA APIs", "license": "MIT", "keywords": [ "uefa", "sports", "matches", "football", "futsal", "api" ], "author": { "name": "Erik Michelson", "email": "opensource@erik.michelson.eu", "url": "https://erik.michelson.eu" }, "repository": { "type": "git", "url": "https://github.com/ErikMichelson/uefa-api" }, "type": "module", "source": "src/index.ts", "exports": { ".": { "require": "./dist/index.cjs", "default": "./dist/index.modern.js", "types": "./dist/index.d.ts" }, "./package.json": "./package.json", "./dist/index.d.ts": "./dist/index.d.ts" }, "main": "./dist/index.cjs", "module": "./dist/index.module.js", "unpkg": "./dist/index.umd.js", "types": "./dist/index.d.ts", "scripts": { "build": "microbundle && cp src/*.d.ts dist/", "dev": "microbundle watch", "fix": "biome check --write src/", "lint": "biome check src/", "ci": "biome ci --reporter=github src/", "prepublishOnly": "npm run lint && npm run build" }, "devDependencies": { "@biomejs/biome": "^1.8.1", "microbundle": "^0.15.1" }, "files": [ "LICENSE", "dist" ] }