UNPKG

ygoapi

Version:

TypeScript client for the YGOPRODeck API v7 - Yu-Gi-Oh! card database access

84 lines (83 loc) 1.87 kB
{ "name": "ygoapi", "description": "TypeScript client for the YGOPRODeck API v7 - Yu-Gi-Oh! card database access", "version": "1.0.1", "author": { "name": "Tim Mikeladze", "email": "tim.mikeladze@gmail.com" }, "type": "module", "files": [ "dist" ], "module": "./dist/index.js", "main": "./dist/index.cjs", "types": "./dist/index.d.ts", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "scripts": { "build": "bunup", "dev": "bunup --watch", "lint": "biome check .", "lint:fix": "biome check --write .", "format": "biome format .", "format:fix": "biome format --write .", "tsc": "tsc --noEmit", "test": "bun test", "test:watch": "bun test --watch", "test:coverage": "bun test --coverage", "release": "bun run build && bumpp --commit --push --tag && bunx changelogithub && bun publish --access public --no-git-checks", "prepare": "bun simple-git-hooks" }, "devDependencies": { "@biomejs/biome": "^2.2.4", "@types/bun": "^1.2.22", "bumpp": "^10.2.3", "bunup": "^0.11.26", "simple-git-hooks": "^2.13.1", "typescript": "^5.9.2" }, "repository": { "type": "git", "url": "git+https://github.com/TimMikeladze/ygoapi.git" }, "peerDependencies": { "typescript": ">=4.5.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } }, "simple-git-hooks": { "pre-commit": "bun run lint:fix && git add ." }, "homepage": "https://github.com/TimMikeladze/ygoapi#readme", "bugs": { "url": "https://github.com/TimMikeladze/ygoapi/issues" }, "license": "MIT", "keywords": [ "yugioh", "yu-gi-oh", "ygo", "ygoprodeck", "card-game", "trading-cards", "typescript", "tcg", "ocg", "duel-monsters", "card-database" ] }