@qontoctl/cli 0.0.0

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/cli.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ export {};
3
+ //# sourceMappingURL=cli.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":""}
package/dist/cli.js ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+ // SPDX-License-Identifier: AGPL-3.0-only
3
+ // Copyright (C) 2026 Oleksii PELYKH
4
+ import { createProgram } from "./program.js";
5
+ createProgram().parse();
6
+ //# sourceMappingURL=cli.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AACA,yCAAyC;AACzC,oCAAoC;AAEpC,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAE7C,aAAa,EAAE,CAAC,KAAK,EAAE,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { Command } from "commander";
2
+ export declare function createProgram(): Command;
3
+ //# sourceMappingURL=program.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"program.d.ts","sourceRoot":"","sources":["../src/program.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEpC,wBAAgB,aAAa,IAAI,OAAO,CASvC"}
@@ -0,0 +1,12 @@
1
+ // SPDX-License-Identifier: AGPL-3.0-only
2
+ // Copyright (C) 2026 Oleksii PELYKH
3
+ import { Command } from "commander";
4
+ export function createProgram() {
5
+ const program = new Command();
6
+ program
7
+ .name("qontoctl")
8
+ .description("The complete CLI & MCP for Qonto")
9
+ .version("0.0.0");
10
+ return program;
11
+ }
12
+ //# sourceMappingURL=program.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"program.js","sourceRoot":"","sources":["../src/program.ts"],"names":[],"mappings":"AAAA,yCAAyC;AACzC,oCAAoC;AAEpC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEpC,MAAM,UAAU,aAAa;IAC3B,MAAM,OAAO,GAAG,IAAI,OAAO,EAAE,CAAC;IAE9B,OAAO;SACJ,IAAI,CAAC,UAAU,CAAC;SAChB,WAAW,CAAC,kCAAkC,CAAC;SAC/C,OAAO,CAAC,OAAO,CAAC,CAAC;IAEpB,OAAO,OAAO,CAAC;AACjB,CAAC"}
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@qontoctl/cli",
3
+ "version": "0.0.0",
4
+ "description": "CLI for Qonto API integration",
5
+ "type": "module",
6
+ "engines": {
7
+ "node": ">=24"
8
+ },
9
+ "license": "AGPL-3.0-only",
10
+ "author": "Alexey Pelykh (https://github.com/alexey-pelykh)",
11
+ "homepage": "https://github.com/alexey-pelykh/qontoctl/tree/main/packages/cli",
12
+ "bugs": "https://github.com/alexey-pelykh/qontoctl/issues",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/alexey-pelykh/qontoctl.git",
16
+ "directory": "packages/cli"
17
+ },
18
+ "exports": {
19
+ ".": {
20
+ "types": "./dist/program.d.ts",
21
+ "import": "./dist/program.js"
22
+ }
23
+ },
24
+ "bin": {
25
+ "qontoctl-cli": "./dist/cli.js"
26
+ },
27
+ "files": [
28
+ "dist"
29
+ ],
30
+ "scripts": {
31
+ "build": "tsc",
32
+ "test": "vitest run --passWithNoTests",
33
+ "lint": "eslint src/",
34
+ "dev": "tsc --watch"
35
+ },
36
+ "dependencies": {
37
+ "@qontoctl/core": "workspace:^",
38
+ "commander": "catalog:"
39
+ },
40
+ "devDependencies": {
41
+ "@types/node": "catalog:",
42
+ "eslint": "catalog:",
43
+ "typescript": "catalog:",
44
+ "vitest": "catalog:"
45
+ }
46
+ }