@lakeql/cli 0.1.0 → 0.1.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/README.md +17 -0
- package/package.json +8 -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,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lakeql/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"homepage": "https://lakeql.dev",
|
|
5
5
|
"bugs": "https://github.com/noxify/lakeql/issues",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"ora": "9.4.0",
|
|
47
47
|
"read-pkg": "10.1.0",
|
|
48
48
|
"zod": "4.4.3",
|
|
49
|
-
"@lakeql/column-parser": "0.1.
|
|
50
|
-
"@lakeql/logger": "0.1.
|
|
51
|
-
"@lakeql/file-generator": "0.1.
|
|
52
|
-
"@lakeql/
|
|
53
|
-
"@lakeql/
|
|
54
|
-
"@lakeql/
|
|
55
|
-
"@lakeql/
|
|
49
|
+
"@lakeql/column-parser": "0.1.1",
|
|
50
|
+
"@lakeql/logger": "0.1.1",
|
|
51
|
+
"@lakeql/file-generator": "0.1.1",
|
|
52
|
+
"@lakeql/response-transformer": "0.1.1",
|
|
53
|
+
"@lakeql/schema-generator": "0.1.1",
|
|
54
|
+
"@lakeql/trino-client": "0.1.1",
|
|
55
|
+
"@lakeql/helpers": "0.1.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@types/lodash-es": "4.17.12",
|