@sqlanvil/core 0.0.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 +12 -0
- package/index.js +4 -0
- package/package.json +16 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# @sqlanvil/core
|
|
2
|
+
|
|
3
|
+
**Status: placeholder. Not usable yet.**
|
|
4
|
+
|
|
5
|
+
Core compiler library for [sqlanvil](https://github.com/ihistand/sqlanvil)
|
|
6
|
+
— an open-source SQL workflow tool for BigQuery + PostgreSQL + Supabase,
|
|
7
|
+
forked from Dataform's OSS core.
|
|
8
|
+
|
|
9
|
+
This npm package name is reserved while the implementation matures.
|
|
10
|
+
Watch the GitHub repo for the first usable release.
|
|
11
|
+
|
|
12
|
+
License: Apache-2.0
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sqlanvil/core",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Placeholder for sqlanvil core — active development at https://github.com/ihistand/sqlanvil",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/ihistand/sqlanvil.git"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/ihistand/sqlanvil",
|
|
11
|
+
"author": "Ivan Histand",
|
|
12
|
+
"license": "Apache-2.0",
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
}
|
|
16
|
+
}
|