-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.67 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
{
"name": "aeon",
"version": "0.0.0",
"license": "MIT",
"description": "Event store for AWS DynamoDB",
"author": {
"name": "Brian Cavalier",
"email": "brian@briancavalier.com"
},
"repository": {
"type": "git",
"url": "https://github.com/briancavalier/aeon.git"
},
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
},
"./aws-cdk/": {
"import": "./dist/esm/aws-cdk/index.js",
"types": "./dist/esm/aws-cdk/index.d.ts"
},
"./dynamodb": {
"import": "./dist/esm/dynamodb/index.js",
"types": "./dist/esm/dynamodb/index.d.ts"
},
"./memory": {
"import": "./dist/esm/memory/index.js",
"types": "./dist/esm/memory/index.d.ts"
}
},
"scripts": {
"build": "tsc --project ./tsconfig.build-esm.json --incremental --tsBuildInfoFile dist/esm/.tsbuildinfo",
"test": "npx tsx --test 'src/**/*.test.ts'",
"typecheck": "tsc --noEmit",
"test:dynamodb": "npx tsx --test 'test/dynamodb/*.test.ts'",
"pretest:dynamodb": "cd test/dynamodb && npx cdk deploy --require-approval=never",
"posttest:dynamodb": "cd test/dynamodb && npx cdk destroy --force"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.817.0",
"@aws-sdk/client-eventbridge": "^3.817.0",
"@aws-sdk/client-lambda": "^3.817.0",
"@aws-sdk/lib-dynamodb": "^3.817.0",
"@types/aws-lambda": "^8.10.149",
"@types/node": "^22.15.21",
"aws-cdk": "^2.1031.0",
"aws-cdk-lib": "^2.198.0",
"aws-lambda": "^1.0.7",
"constructs": "^10.4.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"dependencies": {
"ulid": "^3.0.0"
}
}