-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.87 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
{
"name": "@shelf/dynamodb-query-optimized",
"version": "5.0.0",
"description": "2x faster DynamoDB queries when you need to query 2+ MB of data",
"license": "MIT",
"author": {
"name": "Vlad Holubiev",
"email": "vlad@shelf.io",
"url": "https://shelf.io"
},
"sideEffects": false,
"type": "module",
"exports": "./lib/index.js",
"module": "./lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib/ && tsc",
"coverage": "pnpm test --coverage",
"lint": "oxfmt && eslint . --quiet --fix",
"lint:ci": "oxfmt --check && eslint . --quiet",
"prepack": "pnpm build",
"test": "export ENVIRONMENT=local && jest src",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"preinstall": "npx only-allow pnpm"
},
"lint-staged": {
"*.{html,md,yml}": [
"oxfmt --no-error-on-unmatched-pattern"
],
"*.{ts,js,json}": [
"oxfmt --no-error-on-unmatched-pattern",
"eslint --fix"
]
},
"dependencies": {
"@shelf/aws-ddb-with-xray": "2.1.0",
"lodash-es": "4.18.1",
"p-map": "4.0.0"
},
"devDependencies": {
"@shelf/eslint-config": "6.3.0",
"@shelf/jest-dynamodb": "3.4.1",
"@shelf/prettier-config": "1.1.1",
"@shelf/tsconfig": "0.2.0",
"@swc/core": "1.15.24",
"@swc/jest": "0.2.39",
"@types/jest": "30.0.0",
"@types/lodash-es": "4.17.12",
"@types/minimatch": "5",
"@types/node": "22.15.3",
"eslint": "10.2.0",
"husky": "9.1.7",
"jest": "30.3.0",
"lint-staged": "16.4.0",
"oxfmt": "0.44.0",
"ts-jest-resolver": "2.0.1",
"typescript": "6.0.2"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "3.x.x",
"@aws-sdk/lib-dynamodb": "3.x.x"
},
"engines": {
"node": ">=22.18",
"pnpm": ">=10.17.0"
},
"publishConfig": {
"access": "public"
}
}