-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.28 KB
/
package.json
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
{
"name": "dynamodb-helpers",
"version": "1.1.15",
"description": "Utility functions for making AWS DynamoDB SDK easy to use.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist/client.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./client": {
"import": "./dist/client.js",
"require": "./dist/client.js",
"types": "./dist/client.d.ts"
}
},
"scripts": {
"build": "tsc",
"release": "npm run build && npm version patch && npm publish",
"minor-release": "npm run build && npm version minor && npm publish",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yangchristina/dynamodb-helpers.git"
},
"keywords": [
"aws",
"dynamodb"
],
"author": "Christina Yang",
"license": "MIT",
"bugs": {
"url": "https://github.com/yangchristina/dynamodb-helpers/issues"
},
"homepage": "https://github.com/yangchristina/dynamodb-helpers#readme",
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "3.x",
"@aws-sdk/lib-dynamodb": "3.x"
}
}