@dyanet/nextjs-config-aws 1.0.0 → 1.1.1
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/README.md +5 -0
- package/dist/esm/package.json +1 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# @dyanet/nextjs-config-aws
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@dyanet/nextjs-config-aws)
|
|
4
|
+
[](https://github.com/dyanet/config-aws/actions/workflows/ci.yml)
|
|
5
|
+
[](https://codecov.io/gh/dyanet/config-aws)
|
|
6
|
+
[](https://opensource.org/licenses/MIT)
|
|
7
|
+
|
|
3
8
|
Next.js adapter for AWS configuration management. A thin wrapper around [@dyanet/config-aws](../config-aws) that provides server-side configuration loading, runtime environment variables, and automatic environment detection.
|
|
4
9
|
|
|
5
10
|
## Features
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"module"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dyanet/nextjs-config-aws",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Next.js adapter for AWS configuration management with support for server components, runtime environment variables, and AWS services integration",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"scripts": {
|
|
21
21
|
"build": "npm run clean && npm run build:types && npm run build:esm && npm run build:cjs",
|
|
22
22
|
"build:types": "tsc --project tsconfig.types.json",
|
|
23
|
-
"build:esm": "tsc --project tsconfig.esm.json",
|
|
23
|
+
"build:esm": "tsc --project tsconfig.esm.json && echo {\"type\":\"module\"} > dist/esm/package.json",
|
|
24
24
|
"build:cjs": "tsc --project tsconfig.cjs.json",
|
|
25
25
|
"clean": "rimraf dist",
|
|
26
26
|
"test": "jest",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"author": "Dyanet",
|
|
50
50
|
"license": "MIT",
|
|
51
51
|
"engines": {
|
|
52
|
-
"node": ">=
|
|
53
|
-
"npm": ">=
|
|
52
|
+
"node": ">=20.0.0",
|
|
53
|
+
"npm": ">=10.0.0"
|
|
54
54
|
},
|
|
55
55
|
"publishConfig": {
|
|
56
56
|
"access": "public",
|
|
@@ -64,9 +64,9 @@
|
|
|
64
64
|
"react": "^19.0.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
+
"@aws-sdk/client-s3": "^3.0.0",
|
|
67
68
|
"@aws-sdk/client-secrets-manager": "^3.0.0",
|
|
68
69
|
"@aws-sdk/client-ssm": "^3.0.0",
|
|
69
|
-
"@aws-sdk/client-s3": "^3.0.0",
|
|
70
70
|
"@types/jest": "^29.5.0",
|
|
71
71
|
"@types/node": "^20.0.0",
|
|
72
72
|
"@types/react": "^19.0.0",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"jest": "^29.5.0",
|
|
75
75
|
"next": "^16.0.0",
|
|
76
76
|
"react": "^19.0.0",
|
|
77
|
-
"rimraf": "^
|
|
77
|
+
"rimraf": "^6.0.0",
|
|
78
78
|
"ts-jest": "^29.1.0",
|
|
79
79
|
"typescript": "^5.9.2",
|
|
80
80
|
"zod": "^3.22.0"
|