-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.44 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
{
"name": "@scylladb/alternator-client",
"version": "0.1.0",
"description": "AWS SDK v3-compatible DynamoDB client with ScyllaDB Alternator cluster discovery and routing.",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"browser": "./dist/edge.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=20"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": {
"import": "./dist/edge.js"
},
"worker": {
"import": "./dist/edge.js"
},
"node": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"default": {
"import": "./dist/edge.js"
}
},
"./edge": {
"types": "./dist/edge.d.ts",
"import": "./dist/edge.js"
},
"./document": {
"types": "./dist/document.d.ts",
"browser": {
"import": "./dist/document-edge.js"
},
"worker": {
"import": "./dist/document-edge.js"
},
"node": {
"import": "./dist/document.js",
"require": "./dist/document.cjs"
},
"default": {
"import": "./dist/document-edge.js"
}
},
"./document/edge": {
"types": "./dist/document-edge.d.ts",
"import": "./dist/document-edge.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"lint": "eslint . --max-warnings=0",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.ts",
"verify": "npm run typecheck && npm run lint && npm run test && npm run build"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.1075.0",
"@smithy/fetch-http-handler": "^5.5.2",
"@smithy/node-http-handler": "^4.8.2",
"@smithy/protocol-http": "^5.5.2",
"@smithy/types": "^4.15.0"
},
"devDependencies": {
"@aws-sdk/lib-dynamodb": "^3.1075.0",
"@eslint/js": "^10.0.1",
"@types/node": "^24.0.0",
"eslint": "^10.5.0",
"globals": "^17.7.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
"vitest": "^4.1.9"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.1075.0",
"@aws-sdk/lib-dynamodb": "^3.1075.0"
},
"peerDependenciesMeta": {
"@aws-sdk/lib-dynamodb": {
"optional": true
}
}
}