UNPKG

@evespace/esi-client

Version:

TypeScript client for EVE Online's ESI (EVE Swagger Interface) API

65 lines (64 loc) 1.63 kB
{ "name": "@evespace/esi-client", "version": "1.0.0", "description": "TypeScript client for EVE Online's ESI (EVE Swagger Interface) API", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "require": "./dist/index.js", "import": "./dist/index.mjs", "types": "./dist/index.d.ts" } }, "files": [ "dist" ], "scripts": { "build": "tsup", "generate": "openapi-generator-cli generate -i https://esi.evetech.net/_latest/swagger.json -g typescript-fetch -o src", "clean": "rm -rf dist", "prebuild": "npm run clean", "prepare": "npm run build", "prepublishOnly": "npm run build", "lint": "eslint src --ext .ts", "format": "prettier --write \"src/**/*.ts\"", "test": "jest" }, "keywords": [ "eve-online", "esi", "api", "typescript", "swagger", "openapi", "fetch", "client" ], "author": "Mykola Skrypets", "license": "ISC", "devDependencies": { "@openapitools/openapi-generator-cli": "^2.7.0", "@types/jest": "^29.5.11", "@typescript-eslint/eslint-plugin": "^6.15.0", "@typescript-eslint/parser": "^6.15.0", "eslint": "^8.56.0", "jest": "^29.7.0", "prettier": "^3.1.1", "ts-jest": "^29.1.1", "tsup": "^8.3.5", "typescript": "^5.7.2" }, "engines": { "node": ">=14.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/mskry/esi-client.git" }, "bugs": { "url": "https://github.com/mskry/esi-client/issues" }, "homepage": "https://github.com/mskry/esi-client#readme" }