@infodb/lctl 0.10.0 → 0.10.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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +13 -12
package/dist/index.js CHANGED
@@ -17,7 +17,7 @@ const program = new commander_1.Command();
17
17
  program
18
18
  .name('lctl')
19
19
  .description('AWS Lambda Control Tool - Simple CLI for managing Lambda functions')
20
- .version('0.10.0');
20
+ .version('0.10.1');
21
21
  // Deploy command
22
22
  program
23
23
  .command('deploy')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infodb/lctl",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "description": "AWS Lambda Control Tool - Simple CLI for managing Lambda functions",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -16,18 +16,19 @@
16
16
  "author": "",
17
17
  "license": "MIT",
18
18
  "dependencies": {
19
- "commander": "^11.1.0",
20
- "yaml": "^2.3.4",
21
- "glob": "^10.3.10",
22
- "archiver": "^6.0.1",
23
- "chalk": "^5.3.0",
24
- "express": "^4.18.2"
19
+ "archiver": "^7.0.1",
20
+ "chalk": "^5.6.2",
21
+ "commander": "^14.0.2",
22
+ "express": "^5.1.0",
23
+ "glob": "^13.0.0",
24
+ "yaml": "^2.8.1"
25
25
  },
26
26
  "devDependencies": {
27
- "@types/node": "^20.10.5",
28
- "@types/archiver": "^6.0.2",
29
- "@types/express": "^4.17.21",
30
- "typescript": "^5.3.3"
27
+ "@types/archiver": "^7.0.0",
28
+ "@types/express": "^5.0.5",
29
+ "@types/node": "^24.10.1",
30
+ "tsx": "^4.20.6",
31
+ "typescript": "^5.9.3"
31
32
  },
32
33
  "files": [
33
34
  "dist/**/*",
@@ -37,8 +38,8 @@
37
38
  "access": "public"
38
39
  },
39
40
  "scripts": {
41
+ "dev": "tsx src/index.ts",
40
42
  "build": "tsc",
41
- "dev": "tsc --watch",
42
43
  "start": "node dist/index.js",
43
44
  "test": "npm run build && node dist/index.js",
44
45
  "test-local": "npm run build && cd sample && node ../dist/index.js"