-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "dynamodb-toolkit",
"version": "3.7.1",
"description": "Zero-dependency DynamoDB toolkit (AWS SDK v3) — Adapter with hooks, expression builders, batch/transaction chunking, mass operations, REST handler.",
"type": "module",
"main": "./src/index.js",
"module": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
".": "./src/index.js",
"./expressions": "./src/expressions/index.js",
"./batch": "./src/batch/index.js",
"./mass": "./src/mass/index.js",
"./paths": "./src/paths/index.js",
"./rest-core": "./src/rest-core/index.js",
"./handler": "./src/handler/index.js",
"./marshalling": "./src/marshalling/index.js",
"./provisioning": "./src/provisioning/index.js",
"./*": "./src/*"
},
"bin": {
"dynamodb-toolkit": "./bin/dynamodb-toolkit.js"
},
"scripts": {
"test": "tape6 --flags FO",
"test:bun": "tape6-bun --flags FO",
"test:deno": "tape6-deno --flags FO",
"test:e2e": "TAPE6_WORKER_START_TIMEOUT=60000 tape6 --flags FO tests/e2e/test-*.js",
"ts-test": "tape6 --flags FO tests/test-*.*ts",
"ts-check": "tsc --noEmit",
"js-check": "tsc --project tsconfig.check.json",
"lint": "prettier --check .",
"lint:fix": "prettier --write ."
},
"tape6": {
"tests": [
"/tests/test-*.js",
"/tests/test-*.mjs"
],
"node": [
"/tests/test-*.cjs"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/uhop/dynamodb-toolkit.git"
},
"keywords": [
"aws",
"dynamodb",
"aws-sdk",
"aws-sdk-v3",
"nosql",
"database",
"adapter",
"toolkit",
"rest",
"crud",
"batch",
"transaction",
"pagination",
"expression-builder",
"hooks",
"typescript",
"esm",
"zero-dependencies",
"deno",
"bun"
],
"author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (http://lazutkin.com)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/uhop/dynamodb-toolkit/issues"
},
"homepage": "https://github.com/uhop/dynamodb-toolkit#readme",
"funding": "https://github.com/sponsors/uhop",
"llms": "https://raw.githubusercontent.com/uhop/dynamodb-toolkit/master/llms.txt",
"llmsFull": "https://raw.githubusercontent.com/uhop/dynamodb-toolkit/master/llms-full.txt",
"engines": {
"node": ">=20"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.0.0",
"@aws-sdk/lib-dynamodb": "^3.0.0"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.1076.0",
"@aws-sdk/lib-dynamodb": "^3.1076.0",
"@types/node": "^26.0.1",
"prettier": "^3.9.3",
"tape-six": "^1.11.0",
"typescript": "^6.0.3"
},
"files": [
"src",
"bin",
"llms.txt",
"llms-full.txt"
]
}