{
  "name": "node-simple-mssql-parser",
  "version": "1.2.1",
  "description": "A simple, lightweight parser for MSSQL (T-SQL) SELECT and INSERT statements in Node.js. Parses SQL to AST and provides traversal utilities.",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "mssql",
    "sql",
    "parser",
    "ast",
    "typescript",
    "nodejs",
    "tsql",
    "traverse",
    "select",
    "insert"
  ],
  "homepage": "https://github.com/matthijsgroen/node-simple-mssql-parser#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/matthijsgroen/node-simple-mssql-parser.git"
  },
  "bugs": {
    "url": "https://github.com/matthijsgroen/node-simple-mssql-parser/issues"
  },
  "author": "Matthijs Groen <matthijs.groen@gmail.com>",
  "license": "MIT",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "peggy": "^5.0.4"
  },
  "scripts": {
    "test": "vitest",
    "build": "tsup",
    "lint": "eslint src --ext .ts",
    "build-parser": "peggy -o src/mssql-parser.js src/mssql-parser.pegjs",
    "release": "pnpm build-parser && pnpm lint --fix --max-warnings=0 && pnpm test run && pnpm build && npm publish --access public",
    "start": "node dist/index.js"
  },
  "packageManager": "pnpm@9.15.9+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531",
  "devDependencies": {
    "eslint": "^9.30.1",
    "eslint-config-prettier": "^10.1.5",
    "eslint-plugin-prettier": "^5.5.1",
    "prettier": "^3.6.2",
    "tsup": "^8.5.0",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.36.0",
    "vitest": "^3.2.4"
  }
}
