{
    "scripts": {
        "lint": "run -T eslint . --ext .ts,.tsx",
        "clean": "rm -rf ./dist",
        "dev": "tsc --watch",
        "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-util",
    "version": "5.2.0",
    "description": "Shared giphy js utils",
    "homepage": "https://github.com/Giphy/giphy-js/tree/master/packages/util",
    "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": "*",
        "uuid": "^9.0.0"
    },
    "devDependencies": {
        "@types/uuid": "^8.3.0",
        "typescript": "^5.0.4"
    }
}
