{
  "name": "extra-life-ts",
  "version": "0.5.0",
  "description": "A typed wrapper for the Extra Life API",
  "repository": {
    "type": "git",
    "url": "https://github.com/HeroesPlayGames/extra-life-ts.git"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "/dist"
  ],
  "keywords": [
    "extra-life",
    "api",
    "typescript"
  ],
  "author": {
    "name": "Marcelo Alves",
    "url": "https://github.com/marceloalves"
  },
  "license": "ISC",
  "prettier": {
    "semi": false,
    "singleQuote": true,
    "printWidth": 120
  },
  "tsup": {
    "entry": [
      "src/index.ts"
    ],
    "dts": true,
    "minify": true,
    "splitting": false,
    "sourcemap": true,
    "clean": true
  },
  "engines": {
    "node": ">=16"
  },
  "dependencies": {
    "cross-fetch": "^4.0.0",
    "qss": "^3.0.0"
  },
  "devDependencies": {
    "husky": "^7.0.4",
    "prettier": "^3.3.3",
    "pretty-quick": "^4.0.0",
    "tsup": "^8.3.5",
    "typescript": "^5.6.3"
  },
  "scripts": {
    "dev": "tsup --watch",
    "lint:staged": "pretty-quick --staged",
    "prepublish": "tsup",
    "build": "tsup"
  }
}