@posthog/cli 0.0.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/.gitignore +2 -0
- package/CHANGELOG.md +3 -0
- package/LICENSE +25 -0
- package/README.md +45 -0
- package/binary-install.js +192 -0
- package/binary.js +126 -0
- package/install.js +4 -0
- package/npm-shrinkwrap.json +717 -0
- package/package.json +110 -0
- package/run-posthog-cli.js +4 -0
package/.gitignore
ADDED
package/CHANGELOG.md
ADDED
package/LICENSE
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Copyright (c) 2020-2025 PostHog Inc.
|
|
2
|
+
|
|
3
|
+
Portions of this software are licensed as follows:
|
|
4
|
+
|
|
5
|
+
* All content that resides under the "ee/" directory of this repository, if that directory exists, is licensed under the license defined in "ee/LICENSE".
|
|
6
|
+
* All third party components incorporated into the PostHog Software are licensed under the original license provided by the owner of the applicable component.
|
|
7
|
+
* Content outside of the above mentioned directories or restrictions above is available under the "MIT Expat" license as defined below.
|
|
8
|
+
|
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
11
|
+
in the Software without restriction, including without limitation the rights
|
|
12
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
13
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
14
|
+
furnished to do so, subject to the following conditions:
|
|
15
|
+
|
|
16
|
+
The above copyright notice and this permission notice shall be included in all
|
|
17
|
+
copies or substantial portions of the Software.
|
|
18
|
+
|
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
20
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
21
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
22
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
23
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
25
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# The Posthog CLI
|
|
2
|
+
|
|
3
|
+
```bash
|
|
4
|
+
> posthog-cli --help
|
|
5
|
+
The command line interface for PostHog 🦔
|
|
6
|
+
|
|
7
|
+
Usage: posthog-cli [OPTIONS] <COMMAND>
|
|
8
|
+
|
|
9
|
+
Commands:
|
|
10
|
+
login Interactively authenticate with PostHog, storing a personal API token locally. You can also use the environment variables `POSTHOG_CLI_TOKEN` and `POSTHOG_CLI_ENV_ID`
|
|
11
|
+
query Run a SQL query against any data you have in posthog. This is mostly for fun, and subject to change
|
|
12
|
+
sourcemap Upload a directory of bundled chunks to PostHog
|
|
13
|
+
help Print this message or the help of the given subcommand(s)
|
|
14
|
+
|
|
15
|
+
Options:
|
|
16
|
+
--host <HOST> The PostHog host to connect to [default: https://us.posthog.com]
|
|
17
|
+
-h, --help Print help
|
|
18
|
+
-V, --version Print version
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Env-based Authentication
|
|
22
|
+
|
|
23
|
+
You can authenticate with PostHog interactively for using the CLI locally, but if you'd like to use it in a CI/CD pipeline, we recommend using these environment variables:
|
|
24
|
+
- `POSTHOG_CLI_TOKEN`: [A posthog person API key.](https://posthog.com/docs/api#private-endpoint-authentication)
|
|
25
|
+
- `POSTHOG_CLI_ENV_ID`: The ID number of the project/environment to connect to. E.g. the "2" in `https://us.posthog.com/project/2`
|
|
26
|
+
|
|
27
|
+
## Releases
|
|
28
|
+
|
|
29
|
+
Releases are cut by pushing a release tag to the repository, for the `posthog-cli` app. Generally we want to do this on a branch,
|
|
30
|
+
and bump the package version number at the same time.
|
|
31
|
+
```bash
|
|
32
|
+
git checkout -b "cli/release-v0.1.0-pre1"
|
|
33
|
+
# Bump version number in Cargo.toml
|
|
34
|
+
git add .
|
|
35
|
+
git commit -m "Bump version number"
|
|
36
|
+
git tag "posthog-cli-v0.1.0-prerelease.1"
|
|
37
|
+
git push
|
|
38
|
+
git push --tags
|
|
39
|
+
# Optional - also publish to crates.io
|
|
40
|
+
cd cli && cargo publish
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
We manage publishing releases through [`cargo-dist`](https://github.com/axodotdev/cargo-dist)
|
|
44
|
+
|
|
45
|
+
We release semi-regularly, as new features are added. If a release breaks your CI or workflow, please open an issue on GitHub, and tag one or all of the crate authors
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
const { createWriteStream, existsSync, mkdirSync, mkdtemp } = require("fs");
|
|
2
|
+
const { join, sep } = require("path");
|
|
3
|
+
const { spawnSync } = require("child_process");
|
|
4
|
+
const { tmpdir } = require("os");
|
|
5
|
+
|
|
6
|
+
const axios = require("axios");
|
|
7
|
+
const rimraf = require("rimraf");
|
|
8
|
+
const tmpDir = tmpdir();
|
|
9
|
+
|
|
10
|
+
const error = (msg) => {
|
|
11
|
+
console.error(msg);
|
|
12
|
+
process.exit(1);
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
class Package {
|
|
16
|
+
constructor(name, url, filename, zipExt, binaries) {
|
|
17
|
+
let errors = [];
|
|
18
|
+
if (typeof url !== "string") {
|
|
19
|
+
errors.push("url must be a string");
|
|
20
|
+
} else {
|
|
21
|
+
try {
|
|
22
|
+
new URL(url);
|
|
23
|
+
} catch (e) {
|
|
24
|
+
errors.push(e);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
if (name && typeof name !== "string") {
|
|
28
|
+
errors.push("package name must be a string");
|
|
29
|
+
}
|
|
30
|
+
if (!name) {
|
|
31
|
+
errors.push("You must specify the name of your package");
|
|
32
|
+
}
|
|
33
|
+
if (binaries && typeof binaries !== "object") {
|
|
34
|
+
errors.push("binaries must be a string => string map");
|
|
35
|
+
}
|
|
36
|
+
if (!binaries) {
|
|
37
|
+
errors.push("You must specify the binaries in the package");
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
if (errors.length > 0) {
|
|
41
|
+
let errorMsg =
|
|
42
|
+
"One or more of the parameters you passed to the Binary constructor are invalid:\n";
|
|
43
|
+
errors.forEach((error) => {
|
|
44
|
+
errorMsg += error;
|
|
45
|
+
});
|
|
46
|
+
errorMsg +=
|
|
47
|
+
'\n\nCorrect usage: new Package("my-binary", "https://example.com/binary/download.tar.gz", {"my-binary": "my-binary"})';
|
|
48
|
+
error(errorMsg);
|
|
49
|
+
}
|
|
50
|
+
this.url = url;
|
|
51
|
+
this.name = name;
|
|
52
|
+
this.filename = filename;
|
|
53
|
+
this.zipExt = zipExt;
|
|
54
|
+
this.installDirectory = join(__dirname, "node_modules", ".bin_real");
|
|
55
|
+
this.binaries = binaries;
|
|
56
|
+
|
|
57
|
+
if (!existsSync(this.installDirectory)) {
|
|
58
|
+
mkdirSync(this.installDirectory, { recursive: true });
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
exists() {
|
|
63
|
+
for (const binaryName in this.binaries) {
|
|
64
|
+
const binRelPath = this.binaries[binaryName];
|
|
65
|
+
const binPath = join(this.installDirectory, binRelPath);
|
|
66
|
+
if (!existsSync(binPath)) {
|
|
67
|
+
return false;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
return true;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
install(fetchOptions, suppressLogs = false) {
|
|
74
|
+
if (this.exists()) {
|
|
75
|
+
if (!suppressLogs) {
|
|
76
|
+
console.error(
|
|
77
|
+
`${this.name} is already installed, skipping installation.`,
|
|
78
|
+
);
|
|
79
|
+
}
|
|
80
|
+
return Promise.resolve();
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
if (existsSync(this.installDirectory)) {
|
|
84
|
+
rimraf.sync(this.installDirectory);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
mkdirSync(this.installDirectory, { recursive: true });
|
|
88
|
+
|
|
89
|
+
if (!suppressLogs) {
|
|
90
|
+
console.error(`Downloading release from ${this.url}`);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
return axios({ ...fetchOptions, url: this.url, responseType: "stream" })
|
|
94
|
+
.then((res) => {
|
|
95
|
+
return new Promise((resolve, reject) => {
|
|
96
|
+
mkdtemp(`${tmpDir}${sep}`, (err, directory) => {
|
|
97
|
+
let tempFile = join(directory, this.filename);
|
|
98
|
+
const sink = res.data.pipe(createWriteStream(tempFile));
|
|
99
|
+
sink.on("error", (err) => reject(err));
|
|
100
|
+
sink.on("close", () => {
|
|
101
|
+
if (/\.tar\.*/.test(this.zipExt)) {
|
|
102
|
+
const result = spawnSync("tar", [
|
|
103
|
+
"xf",
|
|
104
|
+
tempFile,
|
|
105
|
+
// The tarballs are stored with a leading directory
|
|
106
|
+
// component; we strip one component in the
|
|
107
|
+
// shell installers too.
|
|
108
|
+
"--strip-components",
|
|
109
|
+
"1",
|
|
110
|
+
"-C",
|
|
111
|
+
this.installDirectory,
|
|
112
|
+
]);
|
|
113
|
+
if (result.status == 0) {
|
|
114
|
+
resolve();
|
|
115
|
+
} else if (result.error) {
|
|
116
|
+
reject(result.error);
|
|
117
|
+
} else {
|
|
118
|
+
reject(
|
|
119
|
+
new Error(
|
|
120
|
+
`An error occurred untarring the artifact: stdout: ${result.stdout}; stderr: ${result.stderr}`,
|
|
121
|
+
),
|
|
122
|
+
);
|
|
123
|
+
}
|
|
124
|
+
} else if (this.zipExt == ".zip") {
|
|
125
|
+
const result = spawnSync("unzip", [
|
|
126
|
+
"-q",
|
|
127
|
+
tempFile,
|
|
128
|
+
"-d",
|
|
129
|
+
this.installDirectory,
|
|
130
|
+
]);
|
|
131
|
+
if (result.status == 0) {
|
|
132
|
+
resolve();
|
|
133
|
+
} else if (result.error) {
|
|
134
|
+
reject(result.error);
|
|
135
|
+
} else {
|
|
136
|
+
reject(
|
|
137
|
+
new Error(
|
|
138
|
+
`An error occurred unzipping the artifact: stdout: ${result.stdout}; stderr: ${result.stderr}`,
|
|
139
|
+
),
|
|
140
|
+
);
|
|
141
|
+
}
|
|
142
|
+
} else {
|
|
143
|
+
reject(
|
|
144
|
+
new Error(`Unrecognized file extension: ${this.zipExt}`),
|
|
145
|
+
);
|
|
146
|
+
}
|
|
147
|
+
});
|
|
148
|
+
});
|
|
149
|
+
});
|
|
150
|
+
})
|
|
151
|
+
.then(() => {
|
|
152
|
+
if (!suppressLogs) {
|
|
153
|
+
console.error(`${this.name} has been installed!`);
|
|
154
|
+
}
|
|
155
|
+
})
|
|
156
|
+
.catch((e) => {
|
|
157
|
+
error(`Error fetching release: ${e.message}`);
|
|
158
|
+
});
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
run(binaryName, fetchOptions) {
|
|
162
|
+
const promise = !this.exists()
|
|
163
|
+
? this.install(fetchOptions, true)
|
|
164
|
+
: Promise.resolve();
|
|
165
|
+
|
|
166
|
+
promise
|
|
167
|
+
.then(() => {
|
|
168
|
+
const [, , ...args] = process.argv;
|
|
169
|
+
|
|
170
|
+
const options = { cwd: process.cwd(), stdio: "inherit" };
|
|
171
|
+
|
|
172
|
+
const binRelPath = this.binaries[binaryName];
|
|
173
|
+
if (!binRelPath) {
|
|
174
|
+
error(`${binaryName} is not a known binary in ${this.name}`);
|
|
175
|
+
}
|
|
176
|
+
const binPath = join(this.installDirectory, binRelPath);
|
|
177
|
+
const result = spawnSync(binPath, args, options);
|
|
178
|
+
|
|
179
|
+
if (result.error) {
|
|
180
|
+
error(result.error);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
process.exit(result.status);
|
|
184
|
+
})
|
|
185
|
+
.catch((e) => {
|
|
186
|
+
error(e.message);
|
|
187
|
+
process.exit(1);
|
|
188
|
+
});
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
module.exports.Package = Package;
|
package/binary.js
ADDED
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
const { Package } = require("./binary-install");
|
|
2
|
+
const os = require("os");
|
|
3
|
+
const cTable = require("console.table");
|
|
4
|
+
const libc = require("detect-libc");
|
|
5
|
+
const { configureProxy } = require("axios-proxy-builder");
|
|
6
|
+
|
|
7
|
+
const error = (msg) => {
|
|
8
|
+
console.error(msg);
|
|
9
|
+
process.exit(1);
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
const {
|
|
13
|
+
name,
|
|
14
|
+
artifactDownloadUrl,
|
|
15
|
+
supportedPlatforms,
|
|
16
|
+
glibcMinimum,
|
|
17
|
+
} = require("./package.json");
|
|
18
|
+
|
|
19
|
+
const builderGlibcMajorVersion = glibcMinimum.major;
|
|
20
|
+
const builderGlibcMInorVersion = glibcMinimum.series;
|
|
21
|
+
|
|
22
|
+
const getPlatform = () => {
|
|
23
|
+
const rawOsType = os.type();
|
|
24
|
+
const rawArchitecture = os.arch();
|
|
25
|
+
|
|
26
|
+
// We want to use rust-style target triples as the canonical key
|
|
27
|
+
// for a platform, so translate the "os" library's concepts into rust ones
|
|
28
|
+
let osType = "";
|
|
29
|
+
switch (rawOsType) {
|
|
30
|
+
case "Windows_NT":
|
|
31
|
+
osType = "pc-windows-msvc";
|
|
32
|
+
break;
|
|
33
|
+
case "Darwin":
|
|
34
|
+
osType = "apple-darwin";
|
|
35
|
+
break;
|
|
36
|
+
case "Linux":
|
|
37
|
+
osType = "unknown-linux-gnu";
|
|
38
|
+
break;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
let arch = "";
|
|
42
|
+
switch (rawArchitecture) {
|
|
43
|
+
case "x64":
|
|
44
|
+
arch = "x86_64";
|
|
45
|
+
break;
|
|
46
|
+
case "arm64":
|
|
47
|
+
arch = "aarch64";
|
|
48
|
+
break;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
if (rawOsType === "Linux") {
|
|
52
|
+
if (libc.familySync() == "musl") {
|
|
53
|
+
osType = "unknown-linux-musl-dynamic";
|
|
54
|
+
} else if (libc.isNonGlibcLinuxSync()) {
|
|
55
|
+
console.warn(
|
|
56
|
+
"Your libc is neither glibc nor musl; trying static musl binary instead",
|
|
57
|
+
);
|
|
58
|
+
osType = "unknown-linux-musl-static";
|
|
59
|
+
} else {
|
|
60
|
+
let libcVersion = libc.versionSync();
|
|
61
|
+
let splitLibcVersion = libcVersion.split(".");
|
|
62
|
+
let libcMajorVersion = splitLibcVersion[0];
|
|
63
|
+
let libcMinorVersion = splitLibcVersion[1];
|
|
64
|
+
if (
|
|
65
|
+
libcMajorVersion != builderGlibcMajorVersion ||
|
|
66
|
+
libcMinorVersion < builderGlibcMInorVersion
|
|
67
|
+
) {
|
|
68
|
+
// We can't run the glibc binaries, but we can run the static musl ones
|
|
69
|
+
// if they exist
|
|
70
|
+
console.warn(
|
|
71
|
+
"Your glibc isn't compatible; trying static musl binary instead",
|
|
72
|
+
);
|
|
73
|
+
osType = "unknown-linux-musl-static";
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
// Assume the above succeeded and build a target triple to look things up with.
|
|
79
|
+
// If any of it failed, this lookup will fail and we'll handle it like normal.
|
|
80
|
+
let targetTriple = `${arch}-${osType}`;
|
|
81
|
+
let platform = supportedPlatforms[targetTriple];
|
|
82
|
+
|
|
83
|
+
if (!platform) {
|
|
84
|
+
error(
|
|
85
|
+
`Platform with type "${rawOsType}" and architecture "${rawArchitecture}" is not supported by ${name}.\nYour system must be one of the following:\n\n${Object.keys(
|
|
86
|
+
supportedPlatforms,
|
|
87
|
+
).join(",")}`,
|
|
88
|
+
);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
return platform;
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
const getPackage = () => {
|
|
95
|
+
const platform = getPlatform();
|
|
96
|
+
const url = `${artifactDownloadUrl}/${platform.artifactName}`;
|
|
97
|
+
let filename = platform.artifactName;
|
|
98
|
+
let ext = platform.zipExt;
|
|
99
|
+
let binary = new Package(name, url, filename, ext, platform.bins);
|
|
100
|
+
|
|
101
|
+
return binary;
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
const install = (suppressLogs) => {
|
|
105
|
+
if (!artifactDownloadUrl || artifactDownloadUrl.length === 0) {
|
|
106
|
+
console.warn("in demo mode, not installing binaries");
|
|
107
|
+
return;
|
|
108
|
+
}
|
|
109
|
+
const package = getPackage();
|
|
110
|
+
const proxy = configureProxy(package.url);
|
|
111
|
+
|
|
112
|
+
return package.install(proxy, suppressLogs);
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
const run = (binaryName) => {
|
|
116
|
+
const package = getPackage();
|
|
117
|
+
const proxy = configureProxy(package.url);
|
|
118
|
+
|
|
119
|
+
package.run(binaryName, proxy);
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
module.exports = {
|
|
123
|
+
install,
|
|
124
|
+
run,
|
|
125
|
+
getPackage,
|
|
126
|
+
};
|
package/install.js
ADDED
|
@@ -0,0 +1,717 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lockfileVersion": 3,
|
|
3
|
+
"name": "@posthog/cli",
|
|
4
|
+
"packages": {
|
|
5
|
+
"": {
|
|
6
|
+
"bin": {
|
|
7
|
+
"posthog-cli": "run-posthog-cli.js"
|
|
8
|
+
},
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"axios": "^1.7.9",
|
|
11
|
+
"axios-proxy-builder": "^0.1.2",
|
|
12
|
+
"console.table": "^0.10.0",
|
|
13
|
+
"detect-libc": "^2.0.3",
|
|
14
|
+
"rimraf": "^5.0.8"
|
|
15
|
+
},
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"prettier": "^3.4.2"
|
|
18
|
+
},
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=14",
|
|
21
|
+
"npm": ">=6"
|
|
22
|
+
},
|
|
23
|
+
"hasInstallScript": true,
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"name": "@posthog/cli",
|
|
26
|
+
"version": "0.0.7"
|
|
27
|
+
},
|
|
28
|
+
"node_modules/@isaacs/cliui": {
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"string-width": "^5.1.2",
|
|
31
|
+
"string-width-cjs": "npm:string-width@^4.2.0",
|
|
32
|
+
"strip-ansi": "^7.0.1",
|
|
33
|
+
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
|
|
34
|
+
"wrap-ansi": "^8.1.0",
|
|
35
|
+
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
|
|
36
|
+
},
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=12"
|
|
39
|
+
},
|
|
40
|
+
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
|
|
41
|
+
"license": "ISC",
|
|
42
|
+
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
|
|
43
|
+
"version": "8.0.2"
|
|
44
|
+
},
|
|
45
|
+
"node_modules/@pkgjs/parseargs": {
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">=14"
|
|
48
|
+
},
|
|
49
|
+
"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
|
|
50
|
+
"license": "MIT",
|
|
51
|
+
"optional": true,
|
|
52
|
+
"resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
|
|
53
|
+
"version": "0.11.0"
|
|
54
|
+
},
|
|
55
|
+
"node_modules/ansi-regex": {
|
|
56
|
+
"engines": {
|
|
57
|
+
"node": ">=12"
|
|
58
|
+
},
|
|
59
|
+
"funding": {
|
|
60
|
+
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
61
|
+
},
|
|
62
|
+
"integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
|
|
63
|
+
"license": "MIT",
|
|
64
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
|
|
65
|
+
"version": "6.0.1"
|
|
66
|
+
},
|
|
67
|
+
"node_modules/ansi-styles": {
|
|
68
|
+
"engines": {
|
|
69
|
+
"node": ">=12"
|
|
70
|
+
},
|
|
71
|
+
"funding": {
|
|
72
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
73
|
+
},
|
|
74
|
+
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
|
|
75
|
+
"license": "MIT",
|
|
76
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
|
|
77
|
+
"version": "6.2.1"
|
|
78
|
+
},
|
|
79
|
+
"node_modules/asynckit": {
|
|
80
|
+
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
|
|
81
|
+
"license": "MIT",
|
|
82
|
+
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
|
83
|
+
"version": "0.4.0"
|
|
84
|
+
},
|
|
85
|
+
"node_modules/axios": {
|
|
86
|
+
"dependencies": {
|
|
87
|
+
"follow-redirects": "^1.15.6",
|
|
88
|
+
"form-data": "^4.0.0",
|
|
89
|
+
"proxy-from-env": "^1.1.0"
|
|
90
|
+
},
|
|
91
|
+
"integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==",
|
|
92
|
+
"license": "MIT",
|
|
93
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz",
|
|
94
|
+
"version": "1.7.9"
|
|
95
|
+
},
|
|
96
|
+
"node_modules/axios-proxy-builder": {
|
|
97
|
+
"dependencies": {
|
|
98
|
+
"tunnel": "^0.0.6"
|
|
99
|
+
},
|
|
100
|
+
"integrity": "sha512-6uBVsBZzkB3tCC8iyx59mCjQckhB8+GQrI9Cop8eC7ybIsvs/KtnNgEBfRMSEa7GqK2VBGUzgjNYMdPIfotyPA==",
|
|
101
|
+
"license": "MIT",
|
|
102
|
+
"resolved": "https://registry.npmjs.org/axios-proxy-builder/-/axios-proxy-builder-0.1.2.tgz",
|
|
103
|
+
"version": "0.1.2"
|
|
104
|
+
},
|
|
105
|
+
"node_modules/balanced-match": {
|
|
106
|
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
107
|
+
"license": "MIT",
|
|
108
|
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
109
|
+
"version": "1.0.2"
|
|
110
|
+
},
|
|
111
|
+
"node_modules/brace-expansion": {
|
|
112
|
+
"dependencies": {
|
|
113
|
+
"balanced-match": "^1.0.0"
|
|
114
|
+
},
|
|
115
|
+
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
|
|
116
|
+
"license": "MIT",
|
|
117
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
|
|
118
|
+
"version": "2.0.1"
|
|
119
|
+
},
|
|
120
|
+
"node_modules/clone": {
|
|
121
|
+
"engines": {
|
|
122
|
+
"node": ">=0.8"
|
|
123
|
+
},
|
|
124
|
+
"integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==",
|
|
125
|
+
"license": "MIT",
|
|
126
|
+
"optional": true,
|
|
127
|
+
"resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
|
|
128
|
+
"version": "1.0.4"
|
|
129
|
+
},
|
|
130
|
+
"node_modules/color-convert": {
|
|
131
|
+
"dependencies": {
|
|
132
|
+
"color-name": "~1.1.4"
|
|
133
|
+
},
|
|
134
|
+
"engines": {
|
|
135
|
+
"node": ">=7.0.0"
|
|
136
|
+
},
|
|
137
|
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
138
|
+
"license": "MIT",
|
|
139
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
140
|
+
"version": "2.0.1"
|
|
141
|
+
},
|
|
142
|
+
"node_modules/color-name": {
|
|
143
|
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
144
|
+
"license": "MIT",
|
|
145
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
146
|
+
"version": "1.1.4"
|
|
147
|
+
},
|
|
148
|
+
"node_modules/combined-stream": {
|
|
149
|
+
"dependencies": {
|
|
150
|
+
"delayed-stream": "~1.0.0"
|
|
151
|
+
},
|
|
152
|
+
"engines": {
|
|
153
|
+
"node": ">= 0.8"
|
|
154
|
+
},
|
|
155
|
+
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
|
156
|
+
"license": "MIT",
|
|
157
|
+
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
|
158
|
+
"version": "1.0.8"
|
|
159
|
+
},
|
|
160
|
+
"node_modules/console.table": {
|
|
161
|
+
"dependencies": {
|
|
162
|
+
"easy-table": "1.1.0"
|
|
163
|
+
},
|
|
164
|
+
"engines": {
|
|
165
|
+
"node": "> 0.10"
|
|
166
|
+
},
|
|
167
|
+
"integrity": "sha512-dPyZofqggxuvSf7WXvNjuRfnsOk1YazkVP8FdxH4tcH2c37wc79/Yl6Bhr7Lsu00KMgy2ql/qCMuNu8xctZM8g==",
|
|
168
|
+
"license": "MIT",
|
|
169
|
+
"resolved": "https://registry.npmjs.org/console.table/-/console.table-0.10.0.tgz",
|
|
170
|
+
"version": "0.10.0"
|
|
171
|
+
},
|
|
172
|
+
"node_modules/cross-spawn": {
|
|
173
|
+
"dependencies": {
|
|
174
|
+
"path-key": "^3.1.0",
|
|
175
|
+
"shebang-command": "^2.0.0",
|
|
176
|
+
"which": "^2.0.1"
|
|
177
|
+
},
|
|
178
|
+
"engines": {
|
|
179
|
+
"node": ">= 8"
|
|
180
|
+
},
|
|
181
|
+
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
|
|
182
|
+
"license": "MIT",
|
|
183
|
+
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
|
|
184
|
+
"version": "7.0.6"
|
|
185
|
+
},
|
|
186
|
+
"node_modules/defaults": {
|
|
187
|
+
"dependencies": {
|
|
188
|
+
"clone": "^1.0.2"
|
|
189
|
+
},
|
|
190
|
+
"funding": {
|
|
191
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
192
|
+
},
|
|
193
|
+
"integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==",
|
|
194
|
+
"license": "MIT",
|
|
195
|
+
"optional": true,
|
|
196
|
+
"resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz",
|
|
197
|
+
"version": "1.0.4"
|
|
198
|
+
},
|
|
199
|
+
"node_modules/delayed-stream": {
|
|
200
|
+
"engines": {
|
|
201
|
+
"node": ">=0.4.0"
|
|
202
|
+
},
|
|
203
|
+
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
|
|
204
|
+
"license": "MIT",
|
|
205
|
+
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
|
206
|
+
"version": "1.0.0"
|
|
207
|
+
},
|
|
208
|
+
"node_modules/detect-libc": {
|
|
209
|
+
"engines": {
|
|
210
|
+
"node": ">=8"
|
|
211
|
+
},
|
|
212
|
+
"integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==",
|
|
213
|
+
"license": "Apache-2.0",
|
|
214
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
|
|
215
|
+
"version": "2.0.3"
|
|
216
|
+
},
|
|
217
|
+
"node_modules/eastasianwidth": {
|
|
218
|
+
"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
|
|
219
|
+
"license": "MIT",
|
|
220
|
+
"resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
|
|
221
|
+
"version": "0.2.0"
|
|
222
|
+
},
|
|
223
|
+
"node_modules/easy-table": {
|
|
224
|
+
"integrity": "sha512-oq33hWOSSnl2Hoh00tZWaIPi1ievrD9aFG82/IgjlycAnW9hHx5PkJiXpxPsgEE+H7BsbVQXFVFST8TEXS6/pA==",
|
|
225
|
+
"license": "MIT",
|
|
226
|
+
"optionalDependencies": {
|
|
227
|
+
"wcwidth": ">=1.0.1"
|
|
228
|
+
},
|
|
229
|
+
"resolved": "https://registry.npmjs.org/easy-table/-/easy-table-1.1.0.tgz",
|
|
230
|
+
"version": "1.1.0"
|
|
231
|
+
},
|
|
232
|
+
"node_modules/emoji-regex": {
|
|
233
|
+
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
|
|
234
|
+
"license": "MIT",
|
|
235
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
|
|
236
|
+
"version": "9.2.2"
|
|
237
|
+
},
|
|
238
|
+
"node_modules/follow-redirects": {
|
|
239
|
+
"engines": {
|
|
240
|
+
"node": ">=4.0"
|
|
241
|
+
},
|
|
242
|
+
"funding": [
|
|
243
|
+
{
|
|
244
|
+
"type": "individual",
|
|
245
|
+
"url": "https://github.com/sponsors/RubenVerborgh"
|
|
246
|
+
}
|
|
247
|
+
],
|
|
248
|
+
"integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==",
|
|
249
|
+
"license": "MIT",
|
|
250
|
+
"peerDependenciesMeta": {
|
|
251
|
+
"debug": {
|
|
252
|
+
"optional": true
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz",
|
|
256
|
+
"version": "1.15.6"
|
|
257
|
+
},
|
|
258
|
+
"node_modules/foreground-child": {
|
|
259
|
+
"dependencies": {
|
|
260
|
+
"cross-spawn": "^7.0.0",
|
|
261
|
+
"signal-exit": "^4.0.1"
|
|
262
|
+
},
|
|
263
|
+
"engines": {
|
|
264
|
+
"node": ">=14"
|
|
265
|
+
},
|
|
266
|
+
"funding": {
|
|
267
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
268
|
+
},
|
|
269
|
+
"integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==",
|
|
270
|
+
"license": "ISC",
|
|
271
|
+
"resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz",
|
|
272
|
+
"version": "3.1.1"
|
|
273
|
+
},
|
|
274
|
+
"node_modules/form-data": {
|
|
275
|
+
"dependencies": {
|
|
276
|
+
"asynckit": "^0.4.0",
|
|
277
|
+
"combined-stream": "^1.0.8",
|
|
278
|
+
"mime-types": "^2.1.12"
|
|
279
|
+
},
|
|
280
|
+
"engines": {
|
|
281
|
+
"node": ">= 6"
|
|
282
|
+
},
|
|
283
|
+
"integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
|
|
284
|
+
"license": "MIT",
|
|
285
|
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
|
|
286
|
+
"version": "4.0.0"
|
|
287
|
+
},
|
|
288
|
+
"node_modules/glob": {
|
|
289
|
+
"bin": {
|
|
290
|
+
"glob": "dist/esm/bin.mjs"
|
|
291
|
+
},
|
|
292
|
+
"dependencies": {
|
|
293
|
+
"foreground-child": "^3.1.0",
|
|
294
|
+
"jackspeak": "^3.1.2",
|
|
295
|
+
"minimatch": "^9.0.1",
|
|
296
|
+
"minipass": "^7.0.4",
|
|
297
|
+
"path-scurry": "^1.11.0"
|
|
298
|
+
},
|
|
299
|
+
"engines": {
|
|
300
|
+
"node": ">=16 || 14 >=14.18"
|
|
301
|
+
},
|
|
302
|
+
"funding": {
|
|
303
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
304
|
+
},
|
|
305
|
+
"integrity": "sha512-JDKXl1DiuuHJ6fVS2FXjownaavciiHNUU4mOvV/B793RLh05vZL1rcPnCSaOgv1hDT6RDlY7AB7ZUvFYAtPgAw==",
|
|
306
|
+
"license": "ISC",
|
|
307
|
+
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.16.tgz",
|
|
308
|
+
"version": "10.3.16"
|
|
309
|
+
},
|
|
310
|
+
"node_modules/is-fullwidth-code-point": {
|
|
311
|
+
"engines": {
|
|
312
|
+
"node": ">=8"
|
|
313
|
+
},
|
|
314
|
+
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
|
315
|
+
"license": "MIT",
|
|
316
|
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
317
|
+
"version": "3.0.0"
|
|
318
|
+
},
|
|
319
|
+
"node_modules/isexe": {
|
|
320
|
+
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
|
|
321
|
+
"license": "ISC",
|
|
322
|
+
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
|
|
323
|
+
"version": "2.0.0"
|
|
324
|
+
},
|
|
325
|
+
"node_modules/jackspeak": {
|
|
326
|
+
"dependencies": {
|
|
327
|
+
"@isaacs/cliui": "^8.0.2"
|
|
328
|
+
},
|
|
329
|
+
"engines": {
|
|
330
|
+
"node": ">=14"
|
|
331
|
+
},
|
|
332
|
+
"funding": {
|
|
333
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
334
|
+
},
|
|
335
|
+
"integrity": "sha512-kWmLKn2tRtfYMF/BakihVVRzBKOxz4gJMiL2Rj91WnAB5TPZumSH99R/Yf1qE1u4uRimvCSJfm6hnxohXeEXjQ==",
|
|
336
|
+
"license": "BlueOak-1.0.0",
|
|
337
|
+
"optionalDependencies": {
|
|
338
|
+
"@pkgjs/parseargs": "^0.11.0"
|
|
339
|
+
},
|
|
340
|
+
"resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.1.2.tgz",
|
|
341
|
+
"version": "3.1.2"
|
|
342
|
+
},
|
|
343
|
+
"node_modules/lru-cache": {
|
|
344
|
+
"engines": {
|
|
345
|
+
"node": "14 || >=16.14"
|
|
346
|
+
},
|
|
347
|
+
"integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==",
|
|
348
|
+
"license": "ISC",
|
|
349
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz",
|
|
350
|
+
"version": "10.2.2"
|
|
351
|
+
},
|
|
352
|
+
"node_modules/mime-db": {
|
|
353
|
+
"engines": {
|
|
354
|
+
"node": ">= 0.6"
|
|
355
|
+
},
|
|
356
|
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
357
|
+
"license": "MIT",
|
|
358
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
|
359
|
+
"version": "1.52.0"
|
|
360
|
+
},
|
|
361
|
+
"node_modules/mime-types": {
|
|
362
|
+
"dependencies": {
|
|
363
|
+
"mime-db": "1.52.0"
|
|
364
|
+
},
|
|
365
|
+
"engines": {
|
|
366
|
+
"node": ">= 0.6"
|
|
367
|
+
},
|
|
368
|
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
|
369
|
+
"license": "MIT",
|
|
370
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
|
371
|
+
"version": "2.1.35"
|
|
372
|
+
},
|
|
373
|
+
"node_modules/minimatch": {
|
|
374
|
+
"dependencies": {
|
|
375
|
+
"brace-expansion": "^2.0.1"
|
|
376
|
+
},
|
|
377
|
+
"engines": {
|
|
378
|
+
"node": ">=16 || 14 >=14.17"
|
|
379
|
+
},
|
|
380
|
+
"funding": {
|
|
381
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
382
|
+
},
|
|
383
|
+
"integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
|
|
384
|
+
"license": "ISC",
|
|
385
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
|
|
386
|
+
"version": "9.0.4"
|
|
387
|
+
},
|
|
388
|
+
"node_modules/minipass": {
|
|
389
|
+
"engines": {
|
|
390
|
+
"node": ">=16 || 14 >=14.17"
|
|
391
|
+
},
|
|
392
|
+
"integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
|
|
393
|
+
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
|
|
394
|
+
"version": "7.1.2"
|
|
395
|
+
},
|
|
396
|
+
"node_modules/path-key": {
|
|
397
|
+
"engines": {
|
|
398
|
+
"node": ">=8"
|
|
399
|
+
},
|
|
400
|
+
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
|
|
401
|
+
"license": "MIT",
|
|
402
|
+
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
|
|
403
|
+
"version": "3.1.1"
|
|
404
|
+
},
|
|
405
|
+
"node_modules/path-scurry": {
|
|
406
|
+
"dependencies": {
|
|
407
|
+
"lru-cache": "^10.2.0",
|
|
408
|
+
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
|
|
409
|
+
},
|
|
410
|
+
"engines": {
|
|
411
|
+
"node": ">=16 || 14 >=14.18"
|
|
412
|
+
},
|
|
413
|
+
"funding": {
|
|
414
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
415
|
+
},
|
|
416
|
+
"integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
|
|
417
|
+
"license": "BlueOak-1.0.0",
|
|
418
|
+
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
|
|
419
|
+
"version": "1.11.1"
|
|
420
|
+
},
|
|
421
|
+
"node_modules/prettier": {
|
|
422
|
+
"bin": {
|
|
423
|
+
"prettier": "bin/prettier.cjs"
|
|
424
|
+
},
|
|
425
|
+
"dev": true,
|
|
426
|
+
"engines": {
|
|
427
|
+
"node": ">=14"
|
|
428
|
+
},
|
|
429
|
+
"funding": {
|
|
430
|
+
"url": "https://github.com/prettier/prettier?sponsor=1"
|
|
431
|
+
},
|
|
432
|
+
"integrity": "sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==",
|
|
433
|
+
"license": "MIT",
|
|
434
|
+
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.2.tgz",
|
|
435
|
+
"version": "3.4.2"
|
|
436
|
+
},
|
|
437
|
+
"node_modules/proxy-from-env": {
|
|
438
|
+
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
|
|
439
|
+
"license": "MIT",
|
|
440
|
+
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
|
|
441
|
+
"version": "1.1.0"
|
|
442
|
+
},
|
|
443
|
+
"node_modules/rimraf": {
|
|
444
|
+
"bin": {
|
|
445
|
+
"rimraf": "dist/esm/bin.mjs"
|
|
446
|
+
},
|
|
447
|
+
"dependencies": {
|
|
448
|
+
"glob": "^10.3.7"
|
|
449
|
+
},
|
|
450
|
+
"engines": {
|
|
451
|
+
"node": ">=18"
|
|
452
|
+
},
|
|
453
|
+
"funding": {
|
|
454
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
455
|
+
},
|
|
456
|
+
"integrity": "sha512-XSh0V2/yNhDEi8HwdIefD8MLgs4LQXPag/nEJWs3YUc3Upn+UHa1GyIkEg9xSSNt7HnkO5FjTvmcRzgf+8UZuw==",
|
|
457
|
+
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.8.tgz",
|
|
458
|
+
"version": "5.0.8"
|
|
459
|
+
},
|
|
460
|
+
"node_modules/shebang-command": {
|
|
461
|
+
"dependencies": {
|
|
462
|
+
"shebang-regex": "^3.0.0"
|
|
463
|
+
},
|
|
464
|
+
"engines": {
|
|
465
|
+
"node": ">=8"
|
|
466
|
+
},
|
|
467
|
+
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
|
468
|
+
"license": "MIT",
|
|
469
|
+
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
|
470
|
+
"version": "2.0.0"
|
|
471
|
+
},
|
|
472
|
+
"node_modules/shebang-regex": {
|
|
473
|
+
"engines": {
|
|
474
|
+
"node": ">=8"
|
|
475
|
+
},
|
|
476
|
+
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
|
|
477
|
+
"license": "MIT",
|
|
478
|
+
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
|
|
479
|
+
"version": "3.0.0"
|
|
480
|
+
},
|
|
481
|
+
"node_modules/signal-exit": {
|
|
482
|
+
"engines": {
|
|
483
|
+
"node": ">=14"
|
|
484
|
+
},
|
|
485
|
+
"funding": {
|
|
486
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
487
|
+
},
|
|
488
|
+
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
489
|
+
"license": "ISC",
|
|
490
|
+
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
491
|
+
"version": "4.1.0"
|
|
492
|
+
},
|
|
493
|
+
"node_modules/string-width": {
|
|
494
|
+
"dependencies": {
|
|
495
|
+
"eastasianwidth": "^0.2.0",
|
|
496
|
+
"emoji-regex": "^9.2.2",
|
|
497
|
+
"strip-ansi": "^7.0.1"
|
|
498
|
+
},
|
|
499
|
+
"engines": {
|
|
500
|
+
"node": ">=12"
|
|
501
|
+
},
|
|
502
|
+
"funding": {
|
|
503
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
504
|
+
},
|
|
505
|
+
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
|
|
506
|
+
"license": "MIT",
|
|
507
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
|
|
508
|
+
"version": "5.1.2"
|
|
509
|
+
},
|
|
510
|
+
"node_modules/string-width-cjs": {
|
|
511
|
+
"dependencies": {
|
|
512
|
+
"emoji-regex": "^8.0.0",
|
|
513
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
514
|
+
"strip-ansi": "^6.0.1"
|
|
515
|
+
},
|
|
516
|
+
"engines": {
|
|
517
|
+
"node": ">=8"
|
|
518
|
+
},
|
|
519
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
520
|
+
"license": "MIT",
|
|
521
|
+
"name": "string-width",
|
|
522
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
523
|
+
"version": "4.2.3"
|
|
524
|
+
},
|
|
525
|
+
"node_modules/string-width-cjs/node_modules/ansi-regex": {
|
|
526
|
+
"engines": {
|
|
527
|
+
"node": ">=8"
|
|
528
|
+
},
|
|
529
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
530
|
+
"license": "MIT",
|
|
531
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
532
|
+
"version": "5.0.1"
|
|
533
|
+
},
|
|
534
|
+
"node_modules/string-width-cjs/node_modules/emoji-regex": {
|
|
535
|
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
536
|
+
"license": "MIT",
|
|
537
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
538
|
+
"version": "8.0.0"
|
|
539
|
+
},
|
|
540
|
+
"node_modules/string-width-cjs/node_modules/strip-ansi": {
|
|
541
|
+
"dependencies": {
|
|
542
|
+
"ansi-regex": "^5.0.1"
|
|
543
|
+
},
|
|
544
|
+
"engines": {
|
|
545
|
+
"node": ">=8"
|
|
546
|
+
},
|
|
547
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
548
|
+
"license": "MIT",
|
|
549
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
550
|
+
"version": "6.0.1"
|
|
551
|
+
},
|
|
552
|
+
"node_modules/strip-ansi": {
|
|
553
|
+
"dependencies": {
|
|
554
|
+
"ansi-regex": "^6.0.1"
|
|
555
|
+
},
|
|
556
|
+
"engines": {
|
|
557
|
+
"node": ">=12"
|
|
558
|
+
},
|
|
559
|
+
"funding": {
|
|
560
|
+
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
561
|
+
},
|
|
562
|
+
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
|
|
563
|
+
"license": "MIT",
|
|
564
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
|
|
565
|
+
"version": "7.1.0"
|
|
566
|
+
},
|
|
567
|
+
"node_modules/strip-ansi-cjs": {
|
|
568
|
+
"dependencies": {
|
|
569
|
+
"ansi-regex": "^5.0.1"
|
|
570
|
+
},
|
|
571
|
+
"engines": {
|
|
572
|
+
"node": ">=8"
|
|
573
|
+
},
|
|
574
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
575
|
+
"license": "MIT",
|
|
576
|
+
"name": "strip-ansi",
|
|
577
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
578
|
+
"version": "6.0.1"
|
|
579
|
+
},
|
|
580
|
+
"node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
|
|
581
|
+
"engines": {
|
|
582
|
+
"node": ">=8"
|
|
583
|
+
},
|
|
584
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
585
|
+
"license": "MIT",
|
|
586
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
587
|
+
"version": "5.0.1"
|
|
588
|
+
},
|
|
589
|
+
"node_modules/tunnel": {
|
|
590
|
+
"engines": {
|
|
591
|
+
"node": ">=0.6.11 <=0.7.0 || >=0.7.3"
|
|
592
|
+
},
|
|
593
|
+
"integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==",
|
|
594
|
+
"license": "MIT",
|
|
595
|
+
"resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz",
|
|
596
|
+
"version": "0.0.6"
|
|
597
|
+
},
|
|
598
|
+
"node_modules/wcwidth": {
|
|
599
|
+
"dependencies": {
|
|
600
|
+
"defaults": "^1.0.3"
|
|
601
|
+
},
|
|
602
|
+
"integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==",
|
|
603
|
+
"license": "MIT",
|
|
604
|
+
"optional": true,
|
|
605
|
+
"resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
|
|
606
|
+
"version": "1.0.1"
|
|
607
|
+
},
|
|
608
|
+
"node_modules/which": {
|
|
609
|
+
"bin": {
|
|
610
|
+
"node-which": "bin/node-which"
|
|
611
|
+
},
|
|
612
|
+
"dependencies": {
|
|
613
|
+
"isexe": "^2.0.0"
|
|
614
|
+
},
|
|
615
|
+
"engines": {
|
|
616
|
+
"node": ">= 8"
|
|
617
|
+
},
|
|
618
|
+
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
|
619
|
+
"license": "ISC",
|
|
620
|
+
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
|
621
|
+
"version": "2.0.2"
|
|
622
|
+
},
|
|
623
|
+
"node_modules/wrap-ansi": {
|
|
624
|
+
"dependencies": {
|
|
625
|
+
"ansi-styles": "^6.1.0",
|
|
626
|
+
"string-width": "^5.0.1",
|
|
627
|
+
"strip-ansi": "^7.0.1"
|
|
628
|
+
},
|
|
629
|
+
"engines": {
|
|
630
|
+
"node": ">=12"
|
|
631
|
+
},
|
|
632
|
+
"funding": {
|
|
633
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
634
|
+
},
|
|
635
|
+
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
|
|
636
|
+
"license": "MIT",
|
|
637
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
|
|
638
|
+
"version": "8.1.0"
|
|
639
|
+
},
|
|
640
|
+
"node_modules/wrap-ansi-cjs": {
|
|
641
|
+
"dependencies": {
|
|
642
|
+
"ansi-styles": "^4.0.0",
|
|
643
|
+
"string-width": "^4.1.0",
|
|
644
|
+
"strip-ansi": "^6.0.0"
|
|
645
|
+
},
|
|
646
|
+
"engines": {
|
|
647
|
+
"node": ">=10"
|
|
648
|
+
},
|
|
649
|
+
"funding": {
|
|
650
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
651
|
+
},
|
|
652
|
+
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
653
|
+
"license": "MIT",
|
|
654
|
+
"name": "wrap-ansi",
|
|
655
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
|
656
|
+
"version": "7.0.0"
|
|
657
|
+
},
|
|
658
|
+
"node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
|
|
659
|
+
"engines": {
|
|
660
|
+
"node": ">=8"
|
|
661
|
+
},
|
|
662
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
663
|
+
"license": "MIT",
|
|
664
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
665
|
+
"version": "5.0.1"
|
|
666
|
+
},
|
|
667
|
+
"node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
|
|
668
|
+
"dependencies": {
|
|
669
|
+
"color-convert": "^2.0.1"
|
|
670
|
+
},
|
|
671
|
+
"engines": {
|
|
672
|
+
"node": ">=8"
|
|
673
|
+
},
|
|
674
|
+
"funding": {
|
|
675
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
676
|
+
},
|
|
677
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
678
|
+
"license": "MIT",
|
|
679
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
680
|
+
"version": "4.3.0"
|
|
681
|
+
},
|
|
682
|
+
"node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
|
|
683
|
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
684
|
+
"license": "MIT",
|
|
685
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
686
|
+
"version": "8.0.0"
|
|
687
|
+
},
|
|
688
|
+
"node_modules/wrap-ansi-cjs/node_modules/string-width": {
|
|
689
|
+
"dependencies": {
|
|
690
|
+
"emoji-regex": "^8.0.0",
|
|
691
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
692
|
+
"strip-ansi": "^6.0.1"
|
|
693
|
+
},
|
|
694
|
+
"engines": {
|
|
695
|
+
"node": ">=8"
|
|
696
|
+
},
|
|
697
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
698
|
+
"license": "MIT",
|
|
699
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
700
|
+
"version": "4.2.3"
|
|
701
|
+
},
|
|
702
|
+
"node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
|
|
703
|
+
"dependencies": {
|
|
704
|
+
"ansi-regex": "^5.0.1"
|
|
705
|
+
},
|
|
706
|
+
"engines": {
|
|
707
|
+
"node": ">=8"
|
|
708
|
+
},
|
|
709
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
710
|
+
"license": "MIT",
|
|
711
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
712
|
+
"version": "6.0.1"
|
|
713
|
+
}
|
|
714
|
+
},
|
|
715
|
+
"requires": true,
|
|
716
|
+
"version": "0.0.7"
|
|
717
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
{
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/PostHog/posthog/releases/download/posthog-cli-v0.0.7",
|
|
3
|
+
"bin": {
|
|
4
|
+
"posthog-cli": "run-posthog-cli.js"
|
|
5
|
+
},
|
|
6
|
+
"contributors": [
|
|
7
|
+
"David <david@posthog.com>",
|
|
8
|
+
"Olly <oliver@posthog.com>",
|
|
9
|
+
"Hugues <hugues@posthog.com>"
|
|
10
|
+
],
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"axios": "^1.7.9",
|
|
13
|
+
"axios-proxy-builder": "^0.1.2",
|
|
14
|
+
"console.table": "^0.10.0",
|
|
15
|
+
"detect-libc": "^2.0.3",
|
|
16
|
+
"rimraf": "^5.0.8"
|
|
17
|
+
},
|
|
18
|
+
"description": "The command line interface for PostHog 🦔",
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"prettier": "^3.4.2"
|
|
21
|
+
},
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=14",
|
|
24
|
+
"npm": ">=6"
|
|
25
|
+
},
|
|
26
|
+
"glibcMinimum": {
|
|
27
|
+
"major": 2,
|
|
28
|
+
"series": 35
|
|
29
|
+
},
|
|
30
|
+
"homepage": "https://posthog.com",
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"name": "@posthog/cli",
|
|
33
|
+
"preferUnplugged": true,
|
|
34
|
+
"repository": "https://github.com/PostHog/posthog",
|
|
35
|
+
"scripts": {
|
|
36
|
+
"fmt": "prettier --write **/*.js",
|
|
37
|
+
"fmt:check": "prettier --check **/*.js",
|
|
38
|
+
"postinstall": "node ./install.js"
|
|
39
|
+
},
|
|
40
|
+
"supportedPlatforms": {
|
|
41
|
+
"aarch64-apple-darwin": {
|
|
42
|
+
"artifactName": "posthog-cli-aarch64-apple-darwin.tar.xz",
|
|
43
|
+
"bins": {
|
|
44
|
+
"posthog-cli": "posthog-cli"
|
|
45
|
+
},
|
|
46
|
+
"zipExt": ".tar.xz"
|
|
47
|
+
},
|
|
48
|
+
"aarch64-pc-windows-msvc": {
|
|
49
|
+
"artifactName": "posthog-cli-x86_64-pc-windows-msvc.zip",
|
|
50
|
+
"bins": {
|
|
51
|
+
"posthog-cli": "posthog-cli.exe"
|
|
52
|
+
},
|
|
53
|
+
"zipExt": ".zip"
|
|
54
|
+
},
|
|
55
|
+
"aarch64-unknown-linux-gnu": {
|
|
56
|
+
"artifactName": "posthog-cli-aarch64-unknown-linux-gnu.tar.xz",
|
|
57
|
+
"bins": {
|
|
58
|
+
"posthog-cli": "posthog-cli"
|
|
59
|
+
},
|
|
60
|
+
"zipExt": ".tar.xz"
|
|
61
|
+
},
|
|
62
|
+
"x86_64-apple-darwin": {
|
|
63
|
+
"artifactName": "posthog-cli-x86_64-apple-darwin.tar.xz",
|
|
64
|
+
"bins": {
|
|
65
|
+
"posthog-cli": "posthog-cli"
|
|
66
|
+
},
|
|
67
|
+
"zipExt": ".tar.xz"
|
|
68
|
+
},
|
|
69
|
+
"x86_64-pc-windows-gnu": {
|
|
70
|
+
"artifactName": "posthog-cli-x86_64-pc-windows-msvc.zip",
|
|
71
|
+
"bins": {
|
|
72
|
+
"posthog-cli": "posthog-cli.exe"
|
|
73
|
+
},
|
|
74
|
+
"zipExt": ".zip"
|
|
75
|
+
},
|
|
76
|
+
"x86_64-pc-windows-msvc": {
|
|
77
|
+
"artifactName": "posthog-cli-x86_64-pc-windows-msvc.zip",
|
|
78
|
+
"bins": {
|
|
79
|
+
"posthog-cli": "posthog-cli.exe"
|
|
80
|
+
},
|
|
81
|
+
"zipExt": ".zip"
|
|
82
|
+
},
|
|
83
|
+
"x86_64-unknown-linux-gnu": {
|
|
84
|
+
"artifactName": "posthog-cli-x86_64-unknown-linux-gnu.tar.xz",
|
|
85
|
+
"bins": {
|
|
86
|
+
"posthog-cli": "posthog-cli"
|
|
87
|
+
},
|
|
88
|
+
"zipExt": ".tar.xz"
|
|
89
|
+
},
|
|
90
|
+
"x86_64-unknown-linux-musl-dynamic": {
|
|
91
|
+
"artifactName": "posthog-cli-x86_64-unknown-linux-musl.tar.xz",
|
|
92
|
+
"bins": {
|
|
93
|
+
"posthog-cli": "posthog-cli"
|
|
94
|
+
},
|
|
95
|
+
"zipExt": ".tar.xz"
|
|
96
|
+
},
|
|
97
|
+
"x86_64-unknown-linux-musl-static": {
|
|
98
|
+
"artifactName": "posthog-cli-x86_64-unknown-linux-musl.tar.xz",
|
|
99
|
+
"bins": {
|
|
100
|
+
"posthog-cli": "posthog-cli"
|
|
101
|
+
},
|
|
102
|
+
"zipExt": ".tar.xz"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"version": "0.0.7",
|
|
106
|
+
"volta": {
|
|
107
|
+
"node": "18.14.1",
|
|
108
|
+
"npm": "9.5.0"
|
|
109
|
+
}
|
|
110
|
+
}
|