aws-apigw-ws-emulator 0.0.1 → 0.0.3

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 (2) hide show
  1. package/dist/cli.js +0 -0
  2. package/package.json +13 -11
package/dist/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aws-apigw-ws-emulator",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Local emulator for AWS API Gateway WebSocket with HTTP integration support",
5
5
  "keywords": [
6
6
  "aws",
@@ -16,18 +16,26 @@
16
16
  "license": "MIT",
17
17
  "repository": {
18
18
  "type": "git",
19
- "url": "https://github.com/m1heng/aws-apigw-ws-emulator"
19
+ "url": "git+https://github.com/m1heng/aws-apigw-ws-emulator.git"
20
20
  },
21
21
  "main": "dist/index.js",
22
22
  "types": "dist/index.d.ts",
23
23
  "bin": {
24
- "aws-apigw-ws-emulator": "./dist/cli.js"
24
+ "aws-apigw-ws-emulator": "dist/cli.js"
25
25
  },
26
26
  "files": [
27
27
  "dist",
28
28
  "README.md",
29
29
  "LICENSE"
30
30
  ],
31
+ "scripts": {
32
+ "build": "tsc",
33
+ "dev": "ts-node src/cli.ts",
34
+ "start": "node dist/cli.js",
35
+ "test": "vitest run",
36
+ "test:watch": "vitest",
37
+ "prepublishOnly": "pnpm build"
38
+ },
31
39
  "dependencies": {
32
40
  "chalk": "^4.1.2",
33
41
  "commander": "^11.1.0",
@@ -44,11 +52,5 @@
44
52
  "engines": {
45
53
  "node": ">=18.0.0"
46
54
  },
47
- "scripts": {
48
- "build": "tsc",
49
- "dev": "ts-node src/cli.ts",
50
- "start": "node dist/cli.js",
51
- "test": "vitest run",
52
- "test:watch": "vitest"
53
- }
54
- }
55
+ "packageManager": "pnpm@10.6.5"
56
+ }