dynamodb-expression-builder 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "dynamodb-expression-builder",
3
+ "version": "0.1.0",
4
+ "description": "DynamoDB expression builder and code generator: build update, condition, filter and key condition expressions with automatic ExpressionAttributeNames/Values aliasing, then emit runnable code for the JavaScript SDK v3, AWS CLI, boto3, Java, Go, .NET, PartiQL and dynamodb-toolbox. Zero dependencies.",
5
+ "keywords": [
6
+ "dynamodb",
7
+ "expression",
8
+ "expression-builder",
9
+ "update-expression",
10
+ "condition-expression",
11
+ "filter-expression",
12
+ "key-condition-expression",
13
+ "expressionattributenames",
14
+ "code-generator",
15
+ "codegen",
16
+ "query-builder",
17
+ "boto3",
18
+ "aws"
19
+ ],
20
+ "license": "MIT",
21
+ "author": "DynoTable <support@dynotable.com> (https://dynotable.com)",
22
+ "homepage": "https://dynotable.com/tools/dynamodb-expression-builder",
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/dynotable/dynamodb-expression-builder.git"
26
+ },
27
+ "bugs": {
28
+ "url": "https://github.com/dynotable/dynamodb-expression-builder/issues"
29
+ },
30
+ "type": "module",
31
+ "main": "./dist/index.cjs",
32
+ "module": "./dist/index.js",
33
+ "types": "./dist/index.d.ts",
34
+ "exports": {
35
+ ".": {
36
+ "import": {
37
+ "types": "./dist/index.d.ts",
38
+ "default": "./dist/index.js"
39
+ },
40
+ "require": {
41
+ "types": "./dist/index.d.cts",
42
+ "default": "./dist/index.cjs"
43
+ }
44
+ },
45
+ "./package.json": "./package.json"
46
+ },
47
+ "files": [
48
+ "dist"
49
+ ],
50
+ "sideEffects": false,
51
+ "engines": {
52
+ "node": ">=24"
53
+ },
54
+ "publishConfig": {
55
+ "access": "public",
56
+ "provenance": true
57
+ },
58
+ "packageManager": "pnpm@10.15.0",
59
+ "scripts": {
60
+ "build": "tsdown",
61
+ "test": "vitest run",
62
+ "lint": "oxlint src tests",
63
+ "typecheck": "tsc --noEmit",
64
+ "check:package": "publint && attw --pack ."
65
+ },
66
+ "devDependencies": {
67
+ "@arethetypeswrong/cli": "^0.18.2",
68
+ "@types/node": "^26.2.0",
69
+ "oxlint": "^1.35.0",
70
+ "publint": "^0.3.14",
71
+ "tsdown": "^0.15.7",
72
+ "typescript": "^5.9.3",
73
+ "vitest": "^4.0.0"
74
+ }
75
+ }