{
  "name": "trender-client",
  "version": "6.2.0",
  "description": "Official Trender client API",
  "main": "./index.js",
  "types": "./index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/trenderapp/trender-client.git"
  },
  "author": "trender",
  "license": "GPL-3.0",
  "private": false,
  "keywords": [
    "Api",
    "Trender",
    "typescript",
    "client",
    "official",
    "simple"
  ],
  "scripts": {
    "format": "prettier --write src/**/*.ts",
    "test": "npm run lint && npm run lint:typings && npm run test:typescript",
    "lint": "eslint src",
    "lint:typings": "tslint src/index.ts",
    "test:typescript": "tsc --noEmit",
    "lint:fix": "eslint src --fix",
    "dev": "node ./test/index.mjs",
    "dev:ts": "ts-node ./test/index.ts",
    "build": "rm -rf ./dist && tsc && cp README.md ./dist/README.md && cp package.json ./dist/package.json && cp LICENSE ./dist/LICENSE",
    "build:publish": "npm run build && cd ./dist && npm publish",
    "update": "yarn upgrade-interactive --latest"
  },
  "devDependencies": {
    "@types/node": "^18.11.18",
    "@typescript-eslint/eslint-plugin": "^7.13.1",
    "@typescript-eslint/parser": "^7.13.1",
    "eslint": "^9.5.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-import": "^2.29.1",
    "prettier": "^3.3.2",
    "ts-node": "^10.9.2",
    "tslint": "^6.1.3",
    "typescript": "^5.5.2"
  },
  "dependencies": {
    "axios": "^1.7.2"
  },
  "engines": {
    "node": ">=14.6.0",
    "npm": ">=5.0.0"
  }
}
