{
  "name": "pg-swag",
  "module": "index.js",
  "type": "module",
  "version": "1.0.3",
  "description": "A distributed scheduler with a grin.",
  "keywords": ["pg", "scheduler", "scheduling", "distributed", "postgres", "schedules", "jobs"],
  "license": "MIT",
  "contributors": [
    {
      "name": "Jesse Daniel Mitchell",
      "email": "jesse.daniel.mitchell@gmail.com",
      "url": "https://github.com/TotalTechGeek"
    },
    {
      "email": "kevinxtung@gmail.com",
      "name": "Kevin Tung",
      "url": "https://github.com/kevinxtung"
    }
  ],
  "repository": {
    "url": "https://github.com/TotalTechGeek/pg-swag"
  },
  "devDependencies": {
    "@eslint/js": "^9.6.0",
    "@types/bun": "latest",
    "c8": "^10.1.2",
    "cross-env": "^7.0.3",
    "eslint": "9.x",
    "eslint-config-standard": "^17.1.0",
    "exitzero": "^1.0.1",
    "globals": "^15.8.0",
    "pineapple": "^0.21.2",
    "rollup": "^4.18.0",
    "run-script-os": "^1.1.6",
    "ts-standard": "^12.0.2"
  },
  "peerDependencies": {
    "typescript": "^5.0.0",
    "pg-promise": "^11.9.0",
    "better-sqlite3": "11.1.2",
    "mysql2": "3.11.0"
  },
  "dependencies": {
    "cron-parser": "^4.9.0",
    "iso8601-duration": "^2.1.2",
    "p-map": "4.0.0",
    "sqlstring": "^2.3.3"
  },
  "scripts": {
    "prepublish": "bun run build",
    "build": "run-script-os",
    "build:win32": "rm -rf dist && rollup index.js --file dist/cjs/index.js --format cjs --exports named && rollup index.js --file dist/esm/index.js --format esm && echo { \"type\": \"module\" } > dist/esm/package.json && echo { \"type\": \"commonjs\" } > dist/cjs/package.json && cd dist && exitzero standard --fix */*.js && tsc ../index.js --declaration --allowJs --emitDeclarationOnly --target ESNext --module NodeNext --skipLibCheck",
    "build:default": "rm -rf dist && rollup index.js --file dist/cjs/index.js --format cjs --exports named && rollup index.js --file dist/esm/index.js --format esm && echo '{ \"type\": \"module\" }' > dist/esm/package.json && echo '{ \"type\": \"commonjs\" }' > dist/cjs/package.json && cd dist && exitzero standard --fix */*.js && tsc ../index.js --declaration --allowJs --emitDeclarationOnly --target ESNext --module NodeNext --skipLibCheck",
    "test": "NODE_OPTIONS=--max-old-space-size=3072 c8 --reporter=text --reporter=lcov pineapple -i *.js --timeout 60000"
  },
  "sideEffects": false,
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "types": "./index.d.ts"
    }
  },
  "types": "./index.d.ts"
}