-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
{
"name": "dynamo-crud",
"author": "yaquawa",
"version": "2.2.8",
"description": "A wrapper lib for the official SDK provides an easier to use CRUD API and type safety.",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"dev": "npm run build -- --watch",
"build": "rm -rf dist && tsup src/index.ts --sourcemap --dts --format cjs,esm",
"prepublishOnly": "npm run build",
"release": "npx git-ensure -a && npx bumpp --commit --tag --push",
"test": "jest"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.450.0",
"@aws-sdk/util-dynamodb": "^3.450.0",
"@types/jest": "^27.4.0",
"jest": "^27.4.7",
"limiter": "^2.0.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"ts-toolbelt": "^9.6.0",
"tslib": "^2.3.1",
"tsup": "^5.11.11",
"typescript": "^4.5.4"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.450.0",
"@aws-sdk/util-dynamodb": "^3.450.0"
}
}