@crvouga/mockingbird-service-dynamodb 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/server.js ADDED
@@ -0,0 +1,12 @@
1
+ import {
2
+ DEFAULT_PORT,
3
+ createServer,
4
+ serveTarget
5
+ } from "./chunk-TCM6WKQB.js";
6
+ import "./chunk-CR54OR5S.js";
7
+ export {
8
+ DEFAULT_PORT,
9
+ createServer,
10
+ serveTarget
11
+ };
12
+ //# sourceMappingURL=server.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "sourcesContent": [],
5
+ "mappings": "",
6
+ "names": []
7
+ }
package/package.json ADDED
@@ -0,0 +1,85 @@
1
+ {
2
+ "name": "@crvouga/mockingbird-service-dynamodb",
3
+ "version": "0.1.0",
4
+ "description": "Stateful Amazon DynamoDB mock with typed items, expressions, indexes, pagination, transactions, and streams.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "sideEffects": false,
8
+ "files": [
9
+ "dist",
10
+ "README.md",
11
+ "CHANGELOG.md"
12
+ ],
13
+ "main": "./dist/index.js",
14
+ "types": "./dist/index.d.ts",
15
+ "exports": {
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "default": "./dist/index.js"
19
+ },
20
+ "./server": {
21
+ "types": "./dist/server.d.ts",
22
+ "default": "./dist/server.js"
23
+ }
24
+ },
25
+ "bin": {
26
+ "mockingbird-dynamodb": "./dist/cli.js"
27
+ },
28
+ "publishConfig": {
29
+ "access": "public",
30
+ "provenance": true
31
+ },
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "git+https://github.com/crvouga/mockingbird.git",
35
+ "directory": "packages/service/dynamodb"
36
+ },
37
+ "homepage": "https://github.com/crvouga/mockingbird/tree/main/packages/service/dynamodb#readme",
38
+ "keywords": [
39
+ "mockingbird",
40
+ "aws",
41
+ "dynamodb",
42
+ "document-client",
43
+ "mock"
44
+ ],
45
+ "mockingbird": {
46
+ "runtime": "portable",
47
+ "entries": {
48
+ "server": "node",
49
+ "cli": "node"
50
+ },
51
+ "layer": "service",
52
+ "category": "databases",
53
+ "displayName": "Amazon DynamoDB",
54
+ "status": "wip"
55
+ },
56
+ "scripts": {
57
+ "generate": "bun ../../openapi/codegen/dist/cli.js",
58
+ "generate:check": "bun ../../openapi/codegen/dist/cli.js --check",
59
+ "openapi:check": "bun ../../openapi/codegen/dist/cli.js --validate",
60
+ "build": "bun ../../../scripts/bundle-service.ts",
61
+ "typecheck": "tsc -p tsconfig.json --noEmit",
62
+ "lint": "biome check .",
63
+ "test": "bun test",
64
+ "parity": "bun scripts/parity.ts",
65
+ "portability": "bun ../../../scripts/portability.ts",
66
+ "pack:check": "bun ../../../scripts/pack-check.ts"
67
+ },
68
+ "dependencies": {
69
+ "@crvouga/mockingbird-service-sqlite": "0.3.0"
70
+ },
71
+ "devDependencies": {
72
+ "@aws-sdk/client-dynamodb": "3.1132.0",
73
+ "@aws-sdk/lib-dynamodb": "3.1132.0",
74
+ "@crvouga/mockingbird-adapter-node": "0.0.0-development",
75
+ "@crvouga/mockingbird-core": "0.0.0-development",
76
+ "@crvouga/mockingbird-openapi": "0.0.0-development",
77
+ "@crvouga/mockingbird-openapi-codegen": "0.1.0",
78
+ "@crvouga/mockingbird-openapi-metadata": "0.0.0-development",
79
+ "@crvouga/mockingbird-parity": "0.0.0-development",
80
+ "@crvouga/mockingbird-service": "0.0.0-development",
81
+ "@crvouga/mockingbird-sqlite": "0.0.0-development",
82
+ "@crvouga/mockingbird-testing": "0.1.0",
83
+ "fast-check": "4.9.0"
84
+ }
85
+ }