@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.
- package/dist/index.js +1 -1
- package/package.json +13 -12
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infodb/lctl",
|
|
3
|
-
"version": "0.10.
|
|
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
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
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/
|
|
28
|
-
"@types/
|
|
29
|
-
"@types/
|
|
30
|
-
"
|
|
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"
|