@konker.dev/middleware-fp 0.1.1 → 0.1.7
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/package.json +11 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@konker.dev/middleware-fp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"author": "Konrad Markus <mail@konker.dev>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -178,12 +178,12 @@
|
|
|
178
178
|
"@effect/schema": "^0.72.4",
|
|
179
179
|
"effect": "^3.11.3",
|
|
180
180
|
"lesslog": "^0.2.7",
|
|
181
|
-
"@konker.dev/aws-client-effect-dynamodb": "0.1.
|
|
182
|
-
"@konker.dev/
|
|
183
|
-
"@konker.dev/
|
|
184
|
-
"@konker.dev/tiny-cache-fp": "0.1.
|
|
185
|
-
"@konker.dev/tiny-error-fp": "0.1.
|
|
186
|
-
"@konker.dev/tiny-utils-fp": "0.1.
|
|
181
|
+
"@konker.dev/aws-client-effect-dynamodb": "0.1.7",
|
|
182
|
+
"@konker.dev/momento-cache-client-effect": "0.1.7",
|
|
183
|
+
"@konker.dev/tiny-auth-utils-fp": "0.1.7",
|
|
184
|
+
"@konker.dev/tiny-cache-fp": "0.1.7",
|
|
185
|
+
"@konker.dev/tiny-error-fp": "0.1.7",
|
|
186
|
+
"@konker.dev/tiny-utils-fp": "0.1.7"
|
|
187
187
|
},
|
|
188
188
|
"devDependencies": {
|
|
189
189
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"@effect/language-service": "^0.0.21",
|
|
194
194
|
"@eslint/js": "^9.17.0",
|
|
195
195
|
"@gomomento/sdk": "^1.102.0",
|
|
196
|
-
"@konker.dev/common-config": "^0.1.
|
|
196
|
+
"@konker.dev/common-config": "^0.1.9",
|
|
197
197
|
"@smithy/smithy-client": "^2.5.1",
|
|
198
198
|
"@swc/core": "^1.10.0",
|
|
199
199
|
"@types/aws-lambda": "^8.10.146",
|
|
@@ -202,6 +202,7 @@
|
|
|
202
202
|
"@vitest/coverage-istanbul": "^2.1.8",
|
|
203
203
|
"aws-lambda": "^1.0.7",
|
|
204
204
|
"aws-sdk-client-mock": "^3.1.0",
|
|
205
|
+
"codecov": "^3.8.3",
|
|
205
206
|
"eslint": "^9.17.0",
|
|
206
207
|
"eslint-plugin-fp": "^2.3.0",
|
|
207
208
|
"eslint-plugin-prettier": "^5.2.1",
|
|
@@ -225,7 +226,7 @@
|
|
|
225
226
|
"circular-check": "madge --extensions ts --circular --no-color --no-spinner --warning src",
|
|
226
227
|
"eslint-check": "eslint --max-warnings=0 '**/*.{ts,js,json}'",
|
|
227
228
|
"eslint-fix": "npx eslint --fix||true",
|
|
228
|
-
"generated-exports-check": "npx --package=@konker.dev/common-config generate-exports-verify
|
|
229
|
+
"generated-exports-check": "npx --package=@konker.dev/common-config generate-exports-verify `pwd`",
|
|
229
230
|
"exports-check": "attw --pack . --ignore-rules=cjs-resolves-to-esm --profile=node16",
|
|
230
231
|
"fixme-check": "leasot --exit-nicely --skip-unsupported src",
|
|
231
232
|
"prettier-check": "npx prettier --check --ignore-path .gitignore --ignore-path .prettierignore '**/*.{css,html,js,ts,json,md,yaml,yml}'",
|
|
@@ -233,6 +234,7 @@
|
|
|
233
234
|
"lint-check": "pnpm run eslint-check && pnpm run prettier-check && pnpm run circular-check && pnpm run fixme-check",
|
|
234
235
|
"lint-fix": "pnpm run eslint-fix && pnpm run prettier-fix",
|
|
235
236
|
"pre-push": "pnpm run lint-check && pnpm run typecheck",
|
|
237
|
+
"codecov": "npx --package=@konker.dev/common-config codecov-upload `pwd` '@konker.dev/middleware-fp'",
|
|
236
238
|
"ci": "pnpm run lint-check && pnpm run typecheck && pnpm run type-coverage-check && pnpm run test && pnpm run build && pnpm run generated-exports-check && pnpm run exports-check && pnpm run fixme-check",
|
|
237
239
|
"cd": "pnpm run build && pnpm publish --access public"
|
|
238
240
|
}
|