@boltic/cli 1.0.38 → 1.0.40
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 +123 -5
- package/api/serverless.js +174 -0
- package/cli.js +71 -3
- package/commands/login.js +77 -8
- package/commands/serverless.js +1942 -0
- package/helper/serverless.js +1932 -0
- package/package.json +6 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@boltic/cli",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.40",
|
|
4
|
+
"description": "Professional CLI for interacting with the Boltic platform — create, manage, and publish integrations, serverless functions, workflows, MCPs, and more with enterprise-grade features and a seamless developer experience",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"boltic": "index.js"
|
|
@@ -99,12 +99,15 @@
|
|
|
99
99
|
},
|
|
100
100
|
"dependencies": {
|
|
101
101
|
"@inquirer/prompts": "^7.8.0",
|
|
102
|
+
"@iarna/toml": "^2.2.5",
|
|
102
103
|
"axios": "^1.11.0",
|
|
103
104
|
"chalk": "^5.5.0",
|
|
104
105
|
"js-yaml": "^4.1.0",
|
|
105
106
|
"keytar": "^7.9.0",
|
|
106
107
|
"lodash.isempty": "^4.4.0",
|
|
107
108
|
"open": "^10.2.0",
|
|
109
|
+
"ora": "^9.0.0",
|
|
110
|
+
"unique-names-generator": "^4.7.1",
|
|
108
111
|
"uuid": "^11.1.0"
|
|
109
112
|
},
|
|
110
113
|
"devDependencies": {
|
|
@@ -133,4 +136,4 @@
|
|
|
133
136
|
"x64",
|
|
134
137
|
"arm64"
|
|
135
138
|
]
|
|
136
|
-
}
|
|
139
|
+
}
|