UNPKG

@phalcode/ts-igdb-client

Version:

A Typescript client and request builder for IGDB using ts-apicalypse

59 lines 1.31 kB
{ "name": "@phalcode/ts-igdb-client", "type": "module", "version": "1.0.22", "description": "A Typescript client and request builder for IGDB using ts-apicalypse", "author": "Phalcode <contact@phalco.de>", "keywords": [ "apicalypse", "igdb" ], "repository": { "type": "git", "url": "https://github.com/Phalcode/ts-igdb-client" }, "homepage": "https://github.com/Phalcode/ts-igdb-client/tree/main/ts-igdb", "license": "MIT", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist", "README.md" ], "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^22.13.10", "protobufjs": "^7.4.0", "protobufjs-cli": "^1.1.3", "ts-node": "^10.9.2", "ts-toolbelt": "^9.6.0", "tsup": "^8.4.0", "typescript": "^5.8.2" }, "dependencies": { "axios": "^1.8.2", "@phalcode/ts-apicalypse": "^1.0.22" }, "tsup": { "entry": [ "src/index.ts" ], "format": [ "esm", "cjs" ], "clean": true, "dts": true }, "scripts": { "proto-to-ts": "node scripts/proto-to-ts.js", "build": "pnpm run proto-to-ts && tsup" } }