dyno-table 0.1.5 → 0.1.7
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/dist/index.d.ts +1129 -1056
- package/dist/index.js +154 -153
- package/package.json +23 -16
package/package.json
CHANGED
|
@@ -1,27 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dyno-table",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "A TypeScript library to simplify working with DynamoDB",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"import": "./dist/index.
|
|
10
|
+
"import": "./dist/index.d.ts",
|
|
11
11
|
"require": "./dist/index.js"
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
"lint": "biome lint",
|
|
21
|
-
"check-types": "tsc --noEmit",
|
|
22
|
-
"ddb:start": "docker compose up -d dynamodb"
|
|
23
|
-
},
|
|
24
|
-
"keywords": ["dynamodb", "aws", "typescript", "database"],
|
|
14
|
+
"keywords": [
|
|
15
|
+
"dynamodb",
|
|
16
|
+
"aws",
|
|
17
|
+
"typescript",
|
|
18
|
+
"database"
|
|
19
|
+
],
|
|
25
20
|
"author": "Maunder",
|
|
26
21
|
"license": "ISC",
|
|
27
22
|
"repository": {
|
|
@@ -41,6 +36,18 @@
|
|
|
41
36
|
"@aws-sdk/client-dynamodb": "^3.0.0",
|
|
42
37
|
"@aws-sdk/lib-dynamodb": "^3.0.0"
|
|
43
38
|
},
|
|
44
|
-
"files": [
|
|
45
|
-
|
|
46
|
-
|
|
39
|
+
"files": [
|
|
40
|
+
"dist"
|
|
41
|
+
],
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "tsup src/index.ts --format esm --dts",
|
|
44
|
+
"clean": "rm -rf dist",
|
|
45
|
+
"test": "vitest run",
|
|
46
|
+
"test:w": "vitest watch",
|
|
47
|
+
"test:int": "vitest --config vitest.integration.ts",
|
|
48
|
+
"lint": "biome lint",
|
|
49
|
+
"check-types": "tsc --noEmit",
|
|
50
|
+
"ddb:start": "docker compose up -d dynamodb",
|
|
51
|
+
"circular": "npx madge --circular --ts-config ./tsconfig.json --extensions ts,tsx src/"
|
|
52
|
+
}
|
|
53
|
+
}
|