-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.62 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
58
{
"name": "zod-to-dynamodb-onetable-schema",
"version": "1.0.0",
"description": "Auto-generate `dynamodb-onetable` model schemas using `zod`, with best-in-class autocomplete",
"keywords": [
"dynamo",
"dynamodb",
"dynamodb-onetable",
"zod"
],
"author": "John Harlow <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jharlow/zod-to-dynamodb-onetable-schema.git"
},
"homepage": "https://github.com/jharlow/zod-to-dynamodb-onetable-schema",
"bugs": {
"url": "httckaps://github.com/jharlow/zod-to-dynamodb-onetable-schema/issues"
},
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"README.md",
"package.json"
],
"type": "module",
"scripts": {
"build": "tsc",
"clean": "tsc --build --clean && rm -rf lib",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"test": "vitest",
"coverage": "vitest run --coverage",
"pr-checks": "pnpm lint && pnpm build && pnpm test && pnpm coverage"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.668.0",
"@eslint/js": "^9.12.0",
"@types/aws-lambda": "^8.10.145",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.7.5",
"@vitest/coverage-v8": "2.1.2",
"aws-lambda": "^1.0.7",
"dynamo-db-local": "^9.2.1",
"dynamodb-onetable": "^2.7.5",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.1",
"vitest": "^2.1.2",
"vitest-mock-extended": "^2.0.2",
"wait-port": "^1.1.0",
"winston": "^3.15.0",
"zod": "^3.23.8"
}
}