-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.85 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
59
60
61
62
63
64
65
66
67
68
{
"name": "@jayalfredprufrock/dynamo-box",
"version": "0.11.4",
"description": "",
"author": "Andrew Smiley <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"lint": "eslint \"src/**/*.ts\" --fix",
"prepare": "husky install"
},
"lint-staged": {
"./{src,test}/**/*.ts": [
"eslint --fix"
]
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.337.0",
"@sinclair/typebox": "^0.32.4 || ^0.33.12 || ^0.34.0",
"@typemon/dynamon": "^4.3.0"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.337.0",
"@changesets/cli": "^2.24.4",
"@sinclair/typebox": "^0.34.0",
"@typemon/dynamon": "^4.3.0",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^3.0.0",
"typescript": "^5.0.4"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"typebox",
"dynamodb",
"json-schema",
"dynamo",
"data-mapper",
"validation",
"repository"
],
"repository": {
"type": "git",
"url": "https://github.com/jayalfredprufrock/dynamo-box"
},
"dependencies": {
"sift": "^17.1.3",
"typed-emitter": "^2.1.0"
}
}