UNPKG

@nerdware/ddb-single-table

Version:

A schema-based DynamoDB modeling tool, high-level API, and type-generator built to supercharge single-table designs!⚡

84 lines (83 loc) 2.38 kB
{ "name": "@nerdware/ddb-single-table", "version": "3.0.1", "description": "A schema-based DynamoDB modeling tool, high-level API, and type-generator built to supercharge single-table designs!⚡", "author": { "name": "Trevor Anderson", "email": "trevor@nerdware.cloud" }, "license": "MIT", "engines": { "node": ">=20.0.0", "npm": ">=10.0.0" }, "type": "module", "files": [ "dist" ], "types": "./dist/esm/index.d.ts", "module": "./dist/esm/index.js", "main": "./dist/cjs/index.js", "exports": { ".": { "types": "./dist/esm/index.d.ts", "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" } }, "private": false, "publishConfig": { "access": "public", "provenance": true, "registry": "https://registry.npmjs.org/" }, "repository": { "type": "git", "url": "git+https://github.com/Nerdware-LLC/ddb-single-table.git" }, "homepage": "https://github.com/Nerdware-LLC/ddb-single-table#readme", "bugs": { "url": "https://github.com/Nerdware-LLC/ddb-single-table/issues" }, "keywords": [ "dynamodb", "ddb", "single-table" ], "scripts": { "lint": "eslint src", "postlint": "npm run typecheck", "typecheck": "tsc --project tsconfig.json --noEmit --skipLibCheck", "test": "vitest run", "test:ci": "vitest run --coverage --bail=1 --silent", "prebuild": "[ -d dist ] && rm -rf dist || true", "build": "scripts/cicd.build.sh" }, "dependencies": { "@aws-sdk/client-dynamodb": "^3.859.0", "@aws-sdk/util-dynamodb": "^3.859.0", "@nerdware/ts-type-safety-utils": "^1.3.0" }, "devDependencies": { "@eslint/js": "^9.21.0", "@stylistic/eslint-plugin": "^5.2.2", "@types/node": "^24.2.0", "@vitest/coverage-v8": "^3.2.4", "@vitest/eslint-plugin": "^1.3.4", "aws-sdk-client-mock": "^4.1.0", "aws-sdk-client-mock-vitest": "^6.2.0", "eslint": "^9.32.0", "eslint-config-prettier": "^10.1.8", "eslint-import-resolver-typescript": "^4.4.4", "eslint-plugin-import-x": "^4.16.1", "eslint-plugin-jsdoc": "^52.0.2", "eslint-plugin-n": "^17.21.3", "globals": "^16.3.0", "prettier": "^3.6.2", "type-fest": "^4.41.0", "typescript": "^5.8.3", "typescript-eslint": "^8.38.0", "vitest": "^3.0.8", "vitest-github-actions-reporter": "^0.11.1" } }