@stacksjs/config 0.39.1 → 0.41.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/index.d.ts CHANGED
@@ -130,6 +130,14 @@ declare const cache: {
130
130
  weight: number;
131
131
  }[];
132
132
  };
133
+ dynamodb: {
134
+ driver: string;
135
+ key: any;
136
+ secret: any;
137
+ region: any;
138
+ table: any;
139
+ endpoint: any;
140
+ };
133
141
  };
134
142
 
135
143
  export { app, cache, deploy, determineDebugMode, docs, git, hashing, library, services, ui };
package/dist/index.mjs CHANGED
@@ -175,7 +175,7 @@ const git = {
175
175
  "path",
176
176
  "realtime",
177
177
  "router",
178
- "runtime",
178
+ "buddy",
179
179
  "security",
180
180
  "server",
181
181
  "storage",
@@ -307,6 +307,14 @@ const cache = {
307
307
  port: env("MEMCACHED_PORT", 11211),
308
308
  weight: 100
309
309
  }]
310
+ },
311
+ dynamodb: {
312
+ driver: "dynamodb",
313
+ key: env("AWS_ACCESS_KEY_ID"),
314
+ secret: env("AWS_SECRET_ACCESS_KEY"),
315
+ region: env("AWS_DEFAULT_REGION", "us-east-1"),
316
+ table: env("DYNAMODB_CACHE_TABLE", "cache"),
317
+ endpoint: env("DYNAMODB_ENDPOINT")
310
318
  }
311
319
  };
312
320
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/config",
3
3
  "type": "module",
4
- "version": "0.39.1",
5
- "packageManager": "pnpm@7.15.0",
4
+ "version": "0.41.0",
5
+ "packageManager": "pnpm@7.16.0",
6
6
  "description": "The Stacks configuration.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -32,13 +32,13 @@
32
32
  ],
33
33
  "engines": {
34
34
  "node": ">=v18.12.1",
35
- "pnpm": ">=7.15.0"
35
+ "pnpm": ">=7.16.0"
36
36
  },
37
37
  "peerDependencies": {
38
- "@stacksjs/utils": "0.39.1"
38
+ "@stacksjs/utils": "0.41.0"
39
39
  },
40
40
  "devDependencies": {
41
- "mkdist": "^0.4.0",
41
+ "mkdist": "^1.0.0",
42
42
  "typescript": "^4.8.4",
43
43
  "unbuild": "^0.9.4"
44
44
  },