{
    "name": "geckoterminal-api",
    "version": "1.0.0",
    "description": "A Node.js wrapper for the Geckoterminal API",
    "main": "dist/cjs/index.js",
    "module": "dist/esm/index.js",
    "type": "module",
    "exports": {
        ".": {
            "import": "./dist/esm/index.js",
            "require": "./dist/cjs/index.js"
        }
    },
    "files": [
        "dist",
        "README.md",
        "LICENSE"
    ],
    "scripts": {
        "build": "npm run build:esm && npm run build:cjs",
        "build:esm": "tsc --outDir dist/esm",
        "build:cjs": "tsc --module commonjs --outDir dist/cjs",
        "test": "jest --config jest.config.cjs",
        "test:watch": "jest --watch",
        "lint": "eslint src"
    },
    "keywords": [
        "geckoterminal",
        "api",
        "defi",
        "dex",
        "crypto",
        "blockchain",
        "ethereum",
        "solana",
        "polygon",
        "binance"
    ],
    "author": "alaarab",
    "license": "MIT",
    "dependencies": {
        "axios": "^1.6.7",
        "dotenv": "^16.4.1"
    },
    "devDependencies": {
        "@babel/core": "^7.23.9",
        "@babel/preset-env": "^7.23.9",
        "@babel/preset-typescript": "^7.23.3",
        "@types/jest": "^29.5.12",
        "@types/node": "^20.11.16",
        "babel-jest": "^29.7.0",
        "eslint": "^8.56.0",
        "jest": "^29.7.0",
        "ts-jest": "^29.1.2",
        "typescript": "^5.3.3"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/alaarab/geckoterminal-api"
    },
    "engines": {
        "node": ">=14.0.0"
    }
}
