This build was committed by a bot.

This commit is contained in:
github-actions
2025-09-01 01:12:36 +00:00
parent a23685ae92
commit cddb9b8b5a
4 changed files with 257 additions and 1 deletions

36
package.json Normal file
View File

@@ -0,0 +1,36 @@
{
"name": "cutedynamodb",
"version": "0.1.0",
"description": "A minimalistic DynamoDB client library with a cute API design",
"main": "dist/index.js",
"type": "module",
"scripts": {
"bundle": "npx esbuild index.js --bundle --outfile=dist/index.js --platform=browser --target=es2022 --format=esm"
},
"author": "PlanetRenox",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PlanetRenox/cute-dynamo.git"
},
"bugs": {
"url": "https://github.com/PlanetRenox/cute-dynamo/issues"
},
"homepage": "https://github.com/PlanetRenox/cute-dynamo#readme",
"dependencies": {
"@aws-sdk/lib-dynamodb": "^3.0.0",
"@aws-sdk/client-dynamodb": "^3.0.0",
"@aws-sdk/client-cognito-identity": "^3.0.0",
"@aws-sdk/credential-provider-cognito-identity": "^3.0.0"
},
"devDependencies": {
"esbuild": "^0.20.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"index.js",
"README.md"
]
}