{
  "name": "@graphql-gene/plugin-sequelize",
  "version": "1.2.6",
  "description": "Generates automatically an executable schema out of your Sequelize models",
  "repository": "accesimpot/graphql-gene",
  "license": "MIT",
  "type": "module",
  "keywords": [
    "graphql",
    "schema",
    "schema generator",
    "generate schema",
    "generate resolvers",
    "sequelize graphql",
    "graphql typescript",
    "gene",
    "lookahead",
    "performance",
    "best practices"
  ],
  "bugs": {
    "url": "https://github.com/accesimpot/graphql-gene/issues"
  },
  "homepage": "https://github.com/accesimpot/graphql-gene/tree/main/packages/plugin-sequelize#readme",
  "engines": {
    "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0"
  },
  "main": "./dist/index.js",
  "scripts": {
    "dev": "NODE_ENV=development pnpm build --watch --emptyOutDir=false",
    "build": "NODE_ENV=${NODE_ENV:-development} vite build",
    "types:check": "tsc --project tsconfig.lint.json"
  },
  "files": [
    "dist"
  ],
  "imports": {
    "#src/*": "./src/*"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "peerDependencies": {
    "graphql": "16.x",
    "graphql-gene": "^1.1.0",
    "sequelize": "6.x",
    "sequelize-typescript": "2.x"
  },
  "dependencies": {
    "graphql-lookahead": "^1.3.1"
  },
  "devDependencies": {
    "@types/node": "^22.15.0",
    "dev-utils": "workspace:*",
    "graphql": "^16.10.0",
    "graphql-gene": "workspace:*",
    "nodemon": "^3.1.9",
    "sequelize": "^6.37.8",
    "sequelize-typescript": "^2.1.6",
    "typescript": "^5.8.2",
    "vite": "^8.0.10"
  },
  "publishConfig": {
    "access": "public"
  },
  "release": {
    "extends": "semantic-release-monorepo",
    "branches": [
      {
        "name": "main"
      },
      {
        "name": "beta",
        "channel": "beta",
        "prerelease": true
      }
    ],
    "repositoryUrl": "https://github.com/accesimpot/graphql-gene.git",
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "preset": "angular",
          "releaseRules": [
            {
              "type": "chore",
              "scope": "deps",
              "release": "patch"
            },
            {
              "type": "docs",
              "scope": "README",
              "release": "patch"
            }
          ]
        }
      ],
      "@semantic-release/release-notes-generator",
      "@semantic-release/npm",
      [
        "@semantic-release/git",
        {
          "message": "chore(release-plugin-sequelize): ${nextRelease.version} \n\n${nextRelease.notes}"
        }
      ],
      "@semantic-release/github"
    ]
  }
}
