@temps-sdk/cli 0.1.4 → 0.1.7
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 +18953 -7926
- package/package.json +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@temps-sdk/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "CLI for Temps deployment platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
"build": "bun build src/index.ts --outdir dist --target node && sed -i '' '1s|#!/usr/bin/env bun|#!/usr/bin/env node|' dist/index.js && chmod +x dist/index.js",
|
|
17
17
|
"build:bin": "bun build src/index.ts --compile --outfile bin/temps",
|
|
18
18
|
"generate:api": "bun openapi-ts",
|
|
19
|
+
"generate:docs": "bun run scripts/generate-docs.ts",
|
|
20
|
+
"generate:docs:mdx": "bun run scripts/generate-docs.ts --format mdx",
|
|
21
|
+
"generate:docs:json": "bun run scripts/generate-docs.ts --format json",
|
|
19
22
|
"typecheck": "tsc --noEmit",
|
|
20
23
|
"link": "bun link"
|
|
21
24
|
},
|
|
@@ -29,6 +32,7 @@
|
|
|
29
32
|
"dependencies": {
|
|
30
33
|
"@hey-api/client-fetch": "^0.13.1",
|
|
31
34
|
"@inquirer/prompts": "^8.0.1",
|
|
35
|
+
"@inquirer/search": "^4.0.2",
|
|
32
36
|
"chalk": "^5.6.2",
|
|
33
37
|
"cli-table3": "^0.6.5",
|
|
34
38
|
"commander": "^14.0.2",
|