UNPKG

@phalcode/ts-apicalypse

Version:

A Typescript client and request builder for Apicalypse

54 lines 1.08 kB
{ "name": "@phalcode/ts-apicalypse", "type": "module", "version": "1.0.22", "description": "A Typescript client and request builder for Apicalypse", "author": "Phalcode <contact@phalco.de>", "keywords": [ "apicalypse" ], "repository": { "type": "git", "url": "https://github.com/Phalcode/ts-igdb-client" }, "homepage": "https://github.com/Phalcode/ts-igdb-client/tree/main/ts-apicalypse", "license": "MIT", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "files": [ "dist", "README.md" ], "dependencies": { "axios": "^1.4.0" }, "devDependencies": { "@types/jest": "^29.5.14", "ts-toolbelt": "^9.6.0", "tsup": "^8.4.0", "typescript": "^5.8.2" }, "tsup": { "entry": [ "src/index.ts" ], "format": [ "esm", "cjs" ], "clean": true, "dts": { "resolve": true } }, "scripts": { "build": "tsup" } }