rawsql-ts 0.1.1-beta.2 → 0.1.1-beta.3

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 +2 -0
  2. package/package.json +6 -3
package/README.md CHANGED
@@ -6,6 +6,8 @@
6
6
  ![npm downloads](https://img.shields.io/npm/dm/rawsql-ts)
7
7
  ![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
8
8
 
9
+ 🌐 [Online Demo (GitHub Pages)](https://mk3008.github.io/rawsql-ts/)
10
+
9
11
  rawsql-ts is a high-performance SQL parser and AST transformer library written in TypeScript. It is designed for extensibility and advanced SQL analysis, with initial focus on PostgreSQL syntax but not limited to it. The library enables easy SQL parsing, transformation, and analysis for a wide range of SQL dialects.
10
12
 
11
13
  > **Note:** This library is currently in beta. The API may change until the v1.0 release.
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "rawsql-ts",
3
- "version": "0.1.1-beta.2",
3
+ "version": "0.1.1-beta.3",
4
4
  "description": "[beta]High-performance SQL parser and AST analyzer written in TypeScript. Provides fast parsing and advanced transformation capabilities.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/esm/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "browser": "dist/esm/index.js",
9
+ "homepage": "https://mk3008.github.io/rawsql-ts/",
9
10
  "scripts": {
10
11
  "test": "vitest run",
11
12
  "test:watch": "vitest",
@@ -19,8 +20,10 @@
19
20
  "keywords": [
20
21
  "sql",
21
22
  "sql-parser",
22
- "query-translator",
23
- "ast-analysis"
23
+ "sql-transformer",
24
+ "ast",
25
+ "sql-ast",
26
+ "sql-formatter"
24
27
  ],
25
28
  "author": "msugiura",
26
29
  "license": "MIT",