@bitblit/ratchet-epsilon-common 6.1.196-alpha → 6.1.198-alpha

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.
Files changed (1) hide show
  1. package/package.json +16 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitblit/ratchet-epsilon-common",
3
- "version": "6.1.196-alpha",
3
+ "version": "6.1.198-alpha",
4
4
  "description": "Tiny adapter to simplify building API gateway Lambda APIS",
5
5
  "sideEffects": false,
6
6
  "bin": {
@@ -60,11 +60,11 @@
60
60
  "@aws-sdk/client-sqs": "3.996.0",
61
61
  "@aws-sdk/client-batch": "3.996.0",
62
62
  "@aws-sdk/types": "3.973.1",
63
- "@bitblit/ratchet-aws": "6.1.196-alpha",
64
- "@bitblit/ratchet-common": "6.1.196-alpha",
65
- "@bitblit/ratchet-misc": "6.1.196-alpha",
66
- "@bitblit/ratchet-node-only": "6.1.196-alpha",
67
- "@bitblit/ratchet-aws-node-only": "6.1.196-alpha",
63
+ "@bitblit/ratchet-aws": "6.1.198-alpha",
64
+ "@bitblit/ratchet-common": "6.1.198-alpha",
65
+ "@bitblit/ratchet-misc": "6.1.198-alpha",
66
+ "@bitblit/ratchet-node-only": "6.1.198-alpha",
67
+ "@bitblit/ratchet-aws-node-only": "6.1.198-alpha",
68
68
  "@smithy/abort-controller": "4.2.9",
69
69
  "@smithy/smithy-client": "4.11.7",
70
70
  "@smithy/util-waiter": "4.2.9",
@@ -82,11 +82,11 @@
82
82
  },
83
83
  "peerDependencies": {
84
84
  "@apollo/server": "^5.5.0",
85
- "@bitblit/ratchet-aws": "6.1.196-alpha",
86
- "@bitblit/ratchet-common": "6.1.196-alpha",
87
- "@bitblit/ratchet-misc": "6.1.196-alpha",
88
- "@bitblit/ratchet-node-only": "6.1.196-alpha",
89
- "@bitblit/ratchet-aws-node-only": "6.1.196-alpha",
85
+ "@bitblit/ratchet-aws": "6.1.198-alpha",
86
+ "@bitblit/ratchet-common": "6.1.198-alpha",
87
+ "@bitblit/ratchet-misc": "6.1.198-alpha",
88
+ "@bitblit/ratchet-node-only": "6.1.198-alpha",
89
+ "@bitblit/ratchet-aws-node-only": "6.1.198-alpha",
90
90
  "@graphql-tools/schema": "^10.0.31",
91
91
  "@graphql-tools/utils": "^11.0.0",
92
92
  "graphql": "^16.12.0"
@@ -119,6 +119,10 @@
119
119
  "test": "vitest run",
120
120
  "test-coverage": "vitest run --coverage",
121
121
  "custom-publish": "pnpm publish --access public --provenance --tag $GITHUB_REF_NAME --no-git-checks",
122
- "clean": "shx rm -Rf lib"
122
+ "clean": "shx rm -Rf lib",
123
+ "pretty": "prettier src --write",
124
+ "lint": "eslint -c ../../eslint.config.mjs src/**/*.ts",
125
+ "lint-fix": "pnpm pretty && eslint --fix -c ../../eslint.config.mjs src/**/*.ts",
126
+ "generate-docs": "typedoc"
123
127
  }
124
128
  }