@liflig/load-secrets 1.1.138 → 1.1.139

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/bun.lock CHANGED
@@ -16,7 +16,7 @@
16
16
  "@types/node": "24.12.2",
17
17
  "husky": "9.1.7",
18
18
  "semantic-release": "25.0.3",
19
- "typescript": "5.9.3",
19
+ "typescript": "6.0.3",
20
20
  },
21
21
  },
22
22
  },
@@ -723,7 +723,7 @@
723
723
 
724
724
  "type-fest": ["type-fest@5.5.0", "", { "dependencies": { "tagged-tag": "^1.0.0" } }, "sha512-PlBfpQwiUvGViBNX84Yxwjsdhd1TUlXr6zjX7eoirtCPIr08NAmxwa+fcYBTeRQxHo9YC9wwF3m9i700sHma8g=="],
725
725
 
726
- "typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="],
726
+ "typescript": ["typescript@6.0.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw=="],
727
727
 
728
728
  "uglify-js": ["uglify-js@3.19.3", "", { "bin": { "uglifyjs": "bin/uglifyjs" } }, "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ=="],
729
729
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liflig/load-secrets",
3
- "version": "1.1.138",
3
+ "version": "1.1.139",
4
4
  "description": "Library for loading project secrets into AWS Secrets Manager",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -35,7 +35,7 @@
35
35
  "@commitlint/config-conventional": "20.5.0",
36
36
  "@types/node": "24.12.2",
37
37
  "husky": "9.1.7",
38
- "typescript": "5.9.3",
38
+ "typescript": "6.0.3",
39
39
  "semantic-release": "25.0.3"
40
40
  }
41
41
  }
package/tsconfig.json CHANGED
@@ -16,9 +16,11 @@
16
16
  "declaration": true,
17
17
 
18
18
  "module": "preserve",
19
+ "rootDir": "./src",
19
20
  "outDir": "./lib",
20
21
 
21
- "lib": ["es2022"]
22
+ "lib": ["es2022"],
23
+ "types": ["node"]
22
24
  },
23
25
  "include": ["src"],
24
26
  "exclude": ["cdk.out", "node_modules"]