{
    "scripts": {
        "lint": "run -T eslint . --ext .ts,.tsx",
        "clean": "rm -rf ./dist",
        "dev": "parcel public/test.html",
        "docs": "typedoc src/index.ts",
        "build": "run -T tsup src/index.ts --format cjs,esm --dts && run -T publint",
        "prepublish": "npm run clean && npm run build",
        "test": "run -T jest --config ./jestconfig.js",
        "test:watch": "run -T jest --config ./jestconfig.js --watchAll"
    },
    "name": "@giphy/js-fetch-api",
    "version": "5.6.0",
    "description": "Javascript API to fetch gifs and stickers from the GIPHY API.",
    "homepage": "https://github.com/Giphy/giphy-js/tree/master/packages/fetch-api",
    "main": "dist/index.cjs",
    "types": "dist/index.d.ts",
    "module": "dist/index.js",
    "type": "module",
    "sideEffects": false,
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.js",
            "require": "./dist/index.cjs"
        },
        "./package.json": "./package.json"
    },
    "files": [
        "dist/",
        "src/**/*"
    ],
    "license": "MIT",
    "publishConfig": {
        "access": "public"
    },
    "dependencies": {
        "@giphy/js-types": "*",
        "@giphy/js-util": "*"
    },
    "devDependencies": {
        "jest-fetch-mock": "^3.0.3",
        "parcel-bundler": "latest",
        "typedoc": "^0.20.37",
        "typedoc-thunder-theme": "^0.0.3",
        "typescript": "^5.0.4"
    }
}
