commet 0.8.0 → 0.8.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 +57 -56
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -27,6 +27,63 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
27
27
|
var import_chalk11 = __toESM(require("chalk"));
|
|
28
28
|
var import_commander10 = require("commander");
|
|
29
29
|
|
|
30
|
+
// package.json
|
|
31
|
+
var package_default = {
|
|
32
|
+
name: "commet",
|
|
33
|
+
version: "0.8.1",
|
|
34
|
+
description: "Commet CLI - Manage your billing platform from the command line",
|
|
35
|
+
bin: {
|
|
36
|
+
commet: "./bin/commet"
|
|
37
|
+
},
|
|
38
|
+
files: [
|
|
39
|
+
"dist",
|
|
40
|
+
"bin",
|
|
41
|
+
"README.md"
|
|
42
|
+
],
|
|
43
|
+
scripts: {
|
|
44
|
+
build: "tsup",
|
|
45
|
+
dev: "tsup --watch",
|
|
46
|
+
lint: "biome lint src/",
|
|
47
|
+
"lint:fix": "biome lint --write src/",
|
|
48
|
+
typecheck: "tsc --noEmit"
|
|
49
|
+
},
|
|
50
|
+
keywords: [
|
|
51
|
+
"billing",
|
|
52
|
+
"cli",
|
|
53
|
+
"typescript",
|
|
54
|
+
"commet"
|
|
55
|
+
],
|
|
56
|
+
author: "Commet Team",
|
|
57
|
+
license: "MIT",
|
|
58
|
+
dependencies: {
|
|
59
|
+
"@commet/node": "workspace:*",
|
|
60
|
+
"@inquirer/prompts": "^7.8.6",
|
|
61
|
+
chalk: "^5.3.0",
|
|
62
|
+
commander: "^12.0.0",
|
|
63
|
+
"jsonc-parser": "^3.3.1",
|
|
64
|
+
open: "^10.0.0",
|
|
65
|
+
ora: "^7.0.1"
|
|
66
|
+
},
|
|
67
|
+
devDependencies: {
|
|
68
|
+
"@types/node": "^20.10.0",
|
|
69
|
+
tsup: "^8.0.1",
|
|
70
|
+
typescript: "^5.3.3"
|
|
71
|
+
},
|
|
72
|
+
engines: {
|
|
73
|
+
node: ">=18.0.0"
|
|
74
|
+
},
|
|
75
|
+
homepage: "https://commet.co",
|
|
76
|
+
repository: {
|
|
77
|
+
type: "git",
|
|
78
|
+
url: "https://github.com/commet-labs/commet.git",
|
|
79
|
+
directory: "packages/cli"
|
|
80
|
+
},
|
|
81
|
+
publishConfig: {
|
|
82
|
+
access: "public",
|
|
83
|
+
provenance: true
|
|
84
|
+
}
|
|
85
|
+
};
|
|
86
|
+
|
|
30
87
|
// src/commands/info.ts
|
|
31
88
|
var import_chalk = __toESM(require("chalk"));
|
|
32
89
|
var import_commander = require("commander");
|
|
@@ -883,62 +940,6 @@ var whoamiCommand = new import_commander9.Command("whoami").description("Display
|
|
|
883
940
|
}
|
|
884
941
|
});
|
|
885
942
|
|
|
886
|
-
// package.json
|
|
887
|
-
var package_default = {
|
|
888
|
-
name: "commet",
|
|
889
|
-
version: "0.8.0",
|
|
890
|
-
description: "Commet CLI - Manage your billing platform from the command line",
|
|
891
|
-
bin: {
|
|
892
|
-
commet: "./bin/commet"
|
|
893
|
-
},
|
|
894
|
-
files: [
|
|
895
|
-
"dist",
|
|
896
|
-
"bin",
|
|
897
|
-
"README.md"
|
|
898
|
-
],
|
|
899
|
-
scripts: {
|
|
900
|
-
build: "tsup",
|
|
901
|
-
dev: "tsup --watch",
|
|
902
|
-
lint: "biome lint src/",
|
|
903
|
-
"lint:fix": "biome lint --write src/",
|
|
904
|
-
typecheck: "tsc --noEmit"
|
|
905
|
-
},
|
|
906
|
-
keywords: [
|
|
907
|
-
"billing",
|
|
908
|
-
"cli",
|
|
909
|
-
"typescript",
|
|
910
|
-
"commet"
|
|
911
|
-
],
|
|
912
|
-
author: "Commet Team",
|
|
913
|
-
license: "MIT",
|
|
914
|
-
dependencies: {
|
|
915
|
-
"@commet/node": "workspace:*",
|
|
916
|
-
"@inquirer/prompts": "^7.8.6",
|
|
917
|
-
chalk: "^5.3.0",
|
|
918
|
-
commander: "^12.0.0",
|
|
919
|
-
"jsonc-parser": "^3.3.1",
|
|
920
|
-
open: "^10.0.0",
|
|
921
|
-
ora: "^7.0.1"
|
|
922
|
-
},
|
|
923
|
-
devDependencies: {
|
|
924
|
-
"@types/node": "^20.10.0",
|
|
925
|
-
tsup: "^8.0.1",
|
|
926
|
-
typescript: "^5.3.3"
|
|
927
|
-
},
|
|
928
|
-
engines: {
|
|
929
|
-
node: ">=18.0.0"
|
|
930
|
-
},
|
|
931
|
-
repository: {
|
|
932
|
-
type: "git",
|
|
933
|
-
url: "https://github.com/commet-labs/commet.git",
|
|
934
|
-
directory: "packages/cli"
|
|
935
|
-
},
|
|
936
|
-
publishConfig: {
|
|
937
|
-
access: "public",
|
|
938
|
-
provenance: true
|
|
939
|
-
}
|
|
940
|
-
};
|
|
941
|
-
|
|
942
943
|
// src/index.ts
|
|
943
944
|
var program = new import_commander10.Command();
|
|
944
945
|
program.name("commet").description(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "commet",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Commet CLI - Manage your billing platform from the command line",
|
|
5
5
|
"bin": {
|
|
6
6
|
"commet": "./bin/commet"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"jsonc-parser": "^3.3.1",
|
|
26
26
|
"open": "^10.0.0",
|
|
27
27
|
"ora": "^7.0.1",
|
|
28
|
-
"@commet/node": "0.
|
|
28
|
+
"@commet/node": "0.10.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^20.10.0",
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"engines": {
|
|
36
36
|
"node": ">=18.0.0"
|
|
37
37
|
},
|
|
38
|
+
"homepage": "https://commet.co",
|
|
38
39
|
"repository": {
|
|
39
40
|
"type": "git",
|
|
40
41
|
"url": "https://github.com/commet-labs/commet.git",
|