@kwork/ldsql 0.0.3-alpha.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 +1 -0
- package/dist/ldsql +1405 -0
- package/package.json +37 -0
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kwork/ldsql",
|
|
3
|
+
"version": "0.0.3-alpha.1",
|
|
4
|
+
"description": "Generate SQL from dbt project using Lightdash MetricQueryBuilder",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/knowledge-work/ldsql.git"
|
|
8
|
+
},
|
|
9
|
+
"bin": {
|
|
10
|
+
"ldsql": "dist/ldsql"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist/ldsql"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public",
|
|
17
|
+
"registry": "https://registry.npmjs.org"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"esbuild": "^0.24.0",
|
|
21
|
+
"lefthook": "^2.1.4",
|
|
22
|
+
"oxfmt": "^0.40.0",
|
|
23
|
+
"oxlint": "^1.55.0",
|
|
24
|
+
"typescript": "^5.9.3",
|
|
25
|
+
"vitest": "^4.1.0"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "node tools/build.mjs",
|
|
29
|
+
"start": "node dist/ldsql",
|
|
30
|
+
"test": "vitest run",
|
|
31
|
+
"lint": "oxlint src/ tools/ test/",
|
|
32
|
+
"fmt": "oxfmt src/ tools/ test/ vitest.config.ts",
|
|
33
|
+
"fmt:check": "oxfmt --check src/ tools/ test/ vitest.config.ts",
|
|
34
|
+
"typecheck": "tsc --noEmit",
|
|
35
|
+
"release": "bash tools/release.sh"
|
|
36
|
+
}
|
|
37
|
+
}
|