rds_ssm_connect 1.0.0 → 1.0.1

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.
@@ -0,0 +1,4 @@
1
+ # These are supported funding model platforms
2
+
3
+ github: yarka-guru
4
+ ko_fi: yarkaguru
package/connect.js CHANGED
@@ -1,3 +1,5 @@
1
+ #!/usr/bin/env node
2
+
1
3
  // Import necessary modules
2
4
  import { spawn } from 'child_process'; // For spawning child processes
3
5
  import inquirer from 'inquirer'; // For prompting the user for input
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rds_ssm_connect",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "@aws-sdk/client-ec2": "^3.363.0",
@@ -9,5 +9,8 @@
9
9
  "aws-sdk": "^2.1411.0",
10
10
  "inquirer": "^8.2.5",
11
11
  "node-jq": "^2.3.5"
12
+ },
13
+ "bin": {
14
+ "rds_ssm_connect": "./connect.js"
12
15
  }
13
16
  }