-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.49 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.49 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
{
"name": "@nr1e/dynamodb-support",
"description": "Supporting functionality and patterns for use with DynamoDB",
"version": "0.2.2",
"type": "module",
"author": "NR1E, Inc.",
"puwblishConfig": {
"access": "public"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/nr1etech/dynamodb-support.git"
},
"files": [
"**"
],
"scripts": {
"build": "tsc",
"postbuild": "prettier --check . && gts lint && cp package.json dist",
"watch": "tsc -w",
"test": "vitest run --coverage",
"lint": "gts lint",
"clean": "rm -rf dist && rm -rf site && rm -rf coverage",
"fix": "gts fix",
"makepretty": "prettier --write .",
"site": "typedoc --out site \"src/**/*.mts\" --exclude \"src/**/*.test.mts\""
},
"devDependencies": {
"@types/node": "20.14.2",
"gts": "^5.3.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typescript": "~5.4.5",
"@vitest/coverage-v8": "^1.6.0",
"vitest": "^1.6.0"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.598.0",
"@aws-sdk/lib-dynamodb": "^3.598.0",
"@nr1e/commons": "^0.1.2",
"@nr1e/logging": "^1.1.0",
"tslib": "^2.6.3"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.598.0",
"@aws-sdk/lib-dynamodb": "^3.598.0",
"@nr1e/commons": "^0.1.2",
"@nr1e/logging": "^1.1.0"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./index.mjs",
"types": "./index.d.mts"
}
}
}