ts-igdb-client
Version:
A Typescript client and request builder for IGDB using ts-apicalypse
57 lines • 1.25 kB
JSON
{
"name": "ts-igdb-client",
"type": "module",
"version": "0.4.2",
"description": "A Typescript client and request builder for IGDB using ts-apicalypse",
"author": "Joël Charles <joel.charles91@gmail.com>",
"keywords": [
"apicalypse",
"igdb"
],
"repository": {
"type": "git",
"url": "https://github.com/magne4000/ts-apicalypse.git"
},
"homepage": "https://github.com/magne4000/ts-apicalypse/tree/main/ts-igdb",
"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.3",
"@types/node": "^16.18.39",
"protobufjs-cli": "^1.1.1",
"ts-node": "^10.9.1",
"ts-toolbelt": "^9.6.0",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.4.0",
"ts-apicalypse": "^0.4.2"
},
"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"
}
}