clx-cli 0.1.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/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "clx-cli",
3
+ "version": "0.1.0",
4
+ "description": "CLI API client generator from OpenAPI specs",
5
+ "type": "module",
6
+ "license": "AGPL-3.0-only",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/golergka/clx.git"
10
+ },
11
+ "author": "golergka",
12
+ "homepage": "https://github.com/golergka/clx",
13
+ "bugs": {
14
+ "url": "https://github.com/golergka/clx/issues"
15
+ },
16
+ "main": "dist/index.js",
17
+ "bin": {
18
+ "clx": "./dist/clx"
19
+ },
20
+ "files": [
21
+ "dist/",
22
+ "LICENSE",
23
+ "README.md"
24
+ ],
25
+ "scripts": {
26
+ "build": "bun build src/index.ts --outdir dist --target node",
27
+ "dev": "bun run src/index.ts",
28
+ "compile": "bun build src/index.ts --compile --outfile dist/clx",
29
+ "typecheck": "tsc --noEmit",
30
+ "test": "bun test",
31
+ "prepublishOnly": "bun run compile"
32
+ },
33
+ "keywords": [
34
+ "cli",
35
+ "openapi",
36
+ "swagger",
37
+ "api",
38
+ "rest",
39
+ "codegen",
40
+ "api-client",
41
+ "curl",
42
+ "http"
43
+ ],
44
+ "engines": {
45
+ "node": ">=18"
46
+ },
47
+ "dependencies": {
48
+ "yaml": "^2.8.2"
49
+ },
50
+ "devDependencies": {
51
+ "@types/node": "^20.19.27",
52
+ "typescript": "^5.9.3"
53
+ }
54
+ }