{
    "name": "dynamodb-onetable",
    "version": "2.7.7",
    "description": "DynamoDB access library for single-table designs",
    "main": "dist/cjs/index.js",
    "module": "dist/mjs/index.js",
    "types": "dist/mjs/index.d.ts",
    "exports": {
        ".": {
            "types": "./dist/mjs/index.d.ts",
            "import": "./dist/mjs/index.js",
            "require": "./dist/cjs/index.js"
        },
        "./Dynamo": {
            "types": "./dist/mjs/Dynamo.d.ts",
            "import": "./dist/mjs/Dynamo.js",
            "require": "./dist/cjs/Dynamo.js"
        }
    },
    "keywords": [
        "dynamodb"
    ],
    "author": "Michael O'Brien <mob@sensedeep.com>",
    "license": "MIT",
    "scripts": {
        "build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && bash ./fixup",
        "lint": "eslint src",
        "lint-fix": "eslint src --fix",
        "prepare": "npm run build",
        "_prepublishOnly": "npm test && npm run lint",
        "test": "jest",
        "test:v2": "DDB_CLIENT_VERSION=v2 jest",
        "test:v3": "DDB_CLIENT_VERSION=v3 jest",
        "test-cov": "jest --coverage",
        "test-cov:v2": "npm run test:v2 -- --coverage",
        "test-cov:v3": "npm run test:v3 -- --coverage"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/sensedeep/dynamodb-onetable.git"
    },
    "bugs": {
        "url": "httckaps://github.com/sensedeep/dynamodb-onetable/issues"
    },
    "homepage": "https://github.com/sensedeep/dynamodb-onetable",
    "dependencies": {
        "@aws-sdk/client-dynamodb": "^3.716.0",
        "@aws-sdk/util-dynamodb": "^3.716.0",
        "custom-metrics": "^1.0.5"
    },
    "devDependencies": {
        "@types/aws-lambda": "^8.10.146",
        "@types/jest": "^29.5.14",
        "@types/node": "^22.10.2",
        "aws-sdk": "^2.1692.0",
        "dataloader": "^2.2.3",
        "dynamo-db-local": "^7.0.0",
        "eslint": "^9.17.0",
        "jest": "^29.7.0",
        "ts-jest": "^29.2.5",
        "typescript": "^5.7.2",
        "utility-types": "^3.11.0",
        "wait-port": "^1.1.0"
    },
    "files": [
        "dist/",
        "Dynamo"
    ],
    "engines": {
        "node": ">=16.0.0",
        "npm": ">=7.0.0"
    }
}
