@lakeql/cli 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +17 -0
  2. package/package.json +17 -8
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # @lakeql/cli
2
+
3
+ CLI tool for generating query endpoints by pulling table schemas from Trino and scaffolding type-safe GraphQL resolvers.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pnpm add @lakeql/cli
9
+ ```
10
+
11
+ ## Documentation
12
+
13
+ See the [LakeQL Documentation](https://lakeql.dev/docs) for detailed usage instructions.
14
+
15
+ ## License
16
+
17
+ [Apache-2.0](../../LICENSE)
package/package.json CHANGED
@@ -1,6 +1,15 @@
1
1
  {
2
2
  "name": "@lakeql/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
+ "description": "CLI for introspecting Trino schemas and generating type-safe GraphQL endpoints",
5
+ "keywords": [
6
+ "cli",
7
+ "codegen",
8
+ "graphql",
9
+ "lakeql",
10
+ "schema",
11
+ "trino"
12
+ ],
4
13
  "homepage": "https://lakeql.dev",
5
14
  "bugs": "https://github.com/noxify/lakeql/issues",
6
15
  "license": "Apache-2.0",
@@ -46,13 +55,13 @@
46
55
  "ora": "9.4.0",
47
56
  "read-pkg": "10.1.0",
48
57
  "zod": "4.4.3",
49
- "@lakeql/column-parser": "0.1.0",
50
- "@lakeql/logger": "0.1.0",
51
- "@lakeql/file-generator": "0.1.0",
52
- "@lakeql/helpers": "0.1.0",
53
- "@lakeql/response-transformer": "0.1.0",
54
- "@lakeql/schema-generator": "0.1.0",
55
- "@lakeql/trino-client": "0.1.0"
58
+ "@lakeql/column-parser": "0.1.2",
59
+ "@lakeql/helpers": "0.1.2",
60
+ "@lakeql/response-transformer": "0.1.2",
61
+ "@lakeql/trino-client": "0.2.0",
62
+ "@lakeql/logger": "0.1.2",
63
+ "@lakeql/schema-generator": "0.1.2",
64
+ "@lakeql/file-generator": "0.1.2"
56
65
  },
57
66
  "devDependencies": {
58
67
  "@types/lodash-es": "4.17.12",