fauxqs 1.3.1 → 1.3.2

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 CHANGED
@@ -88,7 +88,7 @@ services:
88
88
  fauxqs:
89
89
  image: node:24-alpine
90
90
  working_dir: /app
91
- command: npx fauxqs
91
+ command: npx --yes fauxqs@1.3.1
92
92
  ports:
93
93
  - "4566:4566"
94
94
  environment:
package/dist/cli.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ export {};
3
+ //# sourceMappingURL=cli.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":""}
package/dist/cli.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ import { startFauxqs } from "./app.js";
3
+ startFauxqs({ logger: true });
4
+ //# sourceMappingURL=cli.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAEvC,WAAW,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fauxqs",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "SNS/SQS/S3 emulator",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -50,7 +50,7 @@
50
50
  }
51
51
  },
52
52
  "bin": {
53
- "fauxqs": "dist/server.js"
53
+ "fauxqs": "dist/cli.js"
54
54
  },
55
55
  "files": [
56
56
  "dist",