forked from woltsu/tsynamo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 916 Bytes
/
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
{
"name": "tsynamo",
"author": "woltsu",
"version": "0.0.10",
"description": "Typed query builder for DynamoDB",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts",
"tsc": "tsc",
"test": "vitest --typecheck --watch false && pnpm test:integration",
"test:watch": "vitest --typecheck",
"test:integration": "vitest --config vitest.integration.config.mts"
},
"license": "MIT",
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.529.1",
"@aws-sdk/lib-dynamodb": "^3.529.1",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.26",
"testcontainers": "^10.7.2",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.529.1",
"@aws-sdk/lib-dynamodb": "^3.529.1"
}
}