{
  "name": "@openfn/language-mysql",
  "label": "MySQL",
  "version": "4.0.5",
  "description": "A MySQL Language Pack for OpenFn",
  "homepage": "https://docs.openfn.org",
  "main": "dist/index.cjs",
  "repository": {
    "type": "git",
    "url": "https://github.com/openfn/adaptors.git"
  },
  "author": "Open Function Group",
  "license": "LGPLv3",
  "files": [
    "dist/",
    "types/",
    "ast.json",
    "configuration-schema.json"
  ],
  "dependencies": {
    "knex": "^3.1.0",
    "mysql2": "^3.15.3",
    "@openfn/language-common": "3.3.1"
  },
  "devDependencies": {
    "assertion-error": "^1.0.1",
    "chai": "^5.2.0",
    "deep-eql": "^0.1.3",
    "rimraf": "^3.0.2"
  },
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./types/index.d.ts",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "types": "types/index.d.ts",
  "scripts": {
    "build": "pnpm clean && build-adaptor mysql",
    "test": "mocha --experimental-specifier-resolution=node --no-warnings --exclude test/integration.js --recursive",
    "test:watch": "mocha -w --experimental-specifier-resolution=node --no-warnings --exclude test/integration.js --recursive",
    "test:integration": "mocha --experimental-specifier-resolution=node --no-warnings test/integration.js",
    "clean": "rimraf dist types docs",
    "pack": "pnpm pack --pack-destination ../../dist",
    "lint": "eslint src"
  }
}