-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
53
54
55
56
57
{
"name": "@spiffcommerce/dynamodb-lock-client",
"version": "1.0.0",
"description": "A general purpose distributed locking library built for AWS DynamoDB.",
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript --bundleConfigAsCjs",
"prepare": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript --bundleConfigAsCjs"
},
"files": [
"./dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.656.0",
"@aws-sdk/lib-dynamodb": "^3.656.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"jest": "26.0.1",
"prettier": "^3.3.3",
"rollup": "^4.22.4",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
},
"dependencies": {},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.656.0",
"@aws-sdk/lib-dynamodb": "^3.656.0"
},
"repository": {
"type": "git",
"url": "git@github.com:spiffdev/dynamodb-lock-client.git"
},
"keywords": [
"dynamodb",
"distributed",
"lock"
],
"contributors": [
"Tristan Slominski <tristan.slominski@gmail.com>",
"Jacob Lynch",
"simlu",
"Lukas Siemon",
"Tom Yam",
"Cooper Bell <john.cooper.bell@gmail.com>",
"Katarina Golbang",
"fpronto <fpronto94@gmail.com>",
"SpiffCommerce"
],
"license": "MIT"
}