commet 0.7.1 → 0.7.2
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 +57 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -885,11 +885,67 @@ var whoamiCommand = new import_commander9.Command("whoami").description("Display
|
|
|
885
885
|
}
|
|
886
886
|
});
|
|
887
887
|
|
|
888
|
+
// package.json
|
|
889
|
+
var package_default = {
|
|
890
|
+
name: "commet",
|
|
891
|
+
version: "0.7.2",
|
|
892
|
+
description: "Commet CLI - Manage your billing platform from the command line",
|
|
893
|
+
bin: {
|
|
894
|
+
commet: "./bin/commet"
|
|
895
|
+
},
|
|
896
|
+
files: [
|
|
897
|
+
"dist",
|
|
898
|
+
"bin",
|
|
899
|
+
"README.md"
|
|
900
|
+
],
|
|
901
|
+
scripts: {
|
|
902
|
+
build: "tsup",
|
|
903
|
+
dev: "tsup --watch",
|
|
904
|
+
lint: "biome lint src/",
|
|
905
|
+
"lint:fix": "biome lint --write src/",
|
|
906
|
+
typecheck: "tsc --noEmit"
|
|
907
|
+
},
|
|
908
|
+
keywords: [
|
|
909
|
+
"billing",
|
|
910
|
+
"cli",
|
|
911
|
+
"typescript",
|
|
912
|
+
"commet"
|
|
913
|
+
],
|
|
914
|
+
author: "Commet Team",
|
|
915
|
+
license: "MIT",
|
|
916
|
+
dependencies: {
|
|
917
|
+
"@commet/node": "workspace:*",
|
|
918
|
+
"@inquirer/prompts": "^7.8.6",
|
|
919
|
+
chalk: "^5.3.0",
|
|
920
|
+
commander: "^12.0.0",
|
|
921
|
+
"jsonc-parser": "^3.3.1",
|
|
922
|
+
open: "^10.0.0",
|
|
923
|
+
ora: "^7.0.1"
|
|
924
|
+
},
|
|
925
|
+
devDependencies: {
|
|
926
|
+
"@types/node": "^20.10.0",
|
|
927
|
+
tsup: "^8.0.1",
|
|
928
|
+
typescript: "^5.3.3"
|
|
929
|
+
},
|
|
930
|
+
engines: {
|
|
931
|
+
node: ">=18.0.0"
|
|
932
|
+
},
|
|
933
|
+
repository: {
|
|
934
|
+
type: "git",
|
|
935
|
+
url: "https://github.com/commet-labs/commet.git",
|
|
936
|
+
directory: "packages/cli"
|
|
937
|
+
},
|
|
938
|
+
publishConfig: {
|
|
939
|
+
access: "public",
|
|
940
|
+
provenance: true
|
|
941
|
+
}
|
|
942
|
+
};
|
|
943
|
+
|
|
888
944
|
// src/index.ts
|
|
889
945
|
var program = new import_commander10.Command();
|
|
890
946
|
program.name("commet").description(
|
|
891
947
|
"Commet CLI - Manage your billing platform from the command line"
|
|
892
|
-
).version(
|
|
948
|
+
).version(package_default.version);
|
|
893
949
|
program.addCommand(loginCommand);
|
|
894
950
|
program.addCommand(logoutCommand);
|
|
895
951
|
program.addCommand(whoamiCommand);
|