UNPKG

rawsql-ts

Version:

[beta]High-performance SQL parser and AST analyzer written in TypeScript. Provides fast parsing and advanced transformation capabilities.

56 lines 1.84 kB
{ "name": "rawsql-ts", "version": "0.10.0-beta", "description": "[beta]High-performance SQL parser and AST analyzer written in TypeScript. Provides fast parsing and advanced transformation capabilities.", "main": "dist/index.js", "module": "dist/esm/index.js", "types": "dist/index.d.ts", "browser": "dist/esm/index.js", "homepage": "https://mk3008.github.io/rawsql-ts/", "scripts": { "test": "vitest run", "test:watch": "vitest", "coverage": "vitest run --coverage", "build": "tsc --build", "build:browser": "tsc --project tsconfig.browser.json", "clean": "tsc --build --clean", "lint": "eslint . --ext .ts,.tsx --fix", "benchmark": "ts-node benchmarks/parse-benchmark.ts" }, "keywords": [ "sql", "sql-parser", "sql-transformer", "ast", "sql-ast", "sql-formatter" ], "author": "msugiura", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/mk3008/rawsql-ts.git" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/node": "^22.13.10", "@typescript-eslint/eslint-plugin": "^8.26.1", "@typescript-eslint/parser": "^8.26.1", "benchmark": "^2.1.4", "eslint": "^9.22.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-filenames": "^1.3.2", "eslint-plugin-prettier": "^5.2.3", "microtime": "^3.1.1", "node-sql-parser": "^5.3.8", "rawsql-ts": "^0.4.0-beta", "sql-formatter": "^15.5.2", "sql-parser-cst": "^0.33.1", "ts-node": "^10.9.2", "typescript": "^5.8.2", "vitest": "^1.5.2" }, "files": [ "dist" ] }