{
  "name": "@seed-ship/duckdb-mcp-native",
  "version": "1.6.0",
  "description": "Native Node.js/TypeScript implementation of DuckDB MCP extension",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./native": {
      "types": "./dist/tools/native-tools.d.ts",
      "import": "./dist/tools/native-tools.js",
      "require": "./dist/tools/native-tools.js"
    },
    "./server": {
      "types": "./dist/server/mcp-server.d.ts",
      "import": "./dist/server/mcp-server.js",
      "require": "./dist/server/mcp-server.js"
    },
    "./federation": {
      "types": "./dist/federation/index.d.ts",
      "import": "./dist/federation/index.js",
      "require": "./dist/federation/index.js"
    },
    "./lib": {
      "types": "./dist/lib.d.ts",
      "import": "./dist/lib.js",
      "require": "./dist/lib.js"
    },
    "./test": {
      "types": "./dist/test/test-utils.d.ts",
      "import": "./dist/test/test-utils.js",
      "require": "./dist/test/test-utils.js"
    },
    "./process": {
      "types": "./dist/tools/process-tools.d.ts",
      "import": "./dist/tools/process-tools.js",
      "require": "./dist/tools/process-tools.js"
    },
    "./data-helpers": {
      "types": "./dist/tools/data-helper-tools.d.ts",
      "import": "./dist/tools/data-helper-tools.js",
      "require": "./dist/tools/data-helper-tools.js"
    },
    "./graph": {
      "types": "./dist/tools/graph-tools.d.ts",
      "import": "./dist/tools/graph-tools.js",
      "require": "./dist/tools/graph-tools.js"
    },
    "./ducklake": {
      "types": "./dist/tools/ducklake-tools.d.ts",
      "import": "./dist/tools/ducklake-tools.js",
      "require": "./dist/tools/ducklake-tools.js"
    },
    "./motherduck": {
      "types": "./dist/tools/motherduck-tools.d.ts",
      "import": "./dist/tools/motherduck-tools.js",
      "require": "./dist/tools/motherduck-tools.js"
    },
    "./mastra": {
      "types": "./dist/adapters/mastra-adapter.d.ts",
      "import": "./dist/adapters/mastra-adapter.js",
      "require": "./dist/adapters/mastra-adapter.js"
    }
  },
  "files": [
    "dist",
    "scripts",
    "test-data",
    "README.md",
    "LICENSE",
    "DUCKPGQ_FINDINGS.md",
    "DUCKPGQ_FAILURE_ANALYSIS.md",
    "DUCKPGQ_QUICK_REFERENCE.md",
    "MIGRATION_GUIDE.md",
    "VALIDATION_P2.8_P2.9.md",
    "docs/**/*.md"
  ],
  "scripts": {
    "clean": "rm -rf dist",
    "build": "tsc",
    "build:watch": "tsc --watch",
    "dev": "tsx src/index.ts",
    "dev:server": "MCP_MODE=stdio tsx src/server/mcp-server.ts",
    "server": "tsx src/server/mcp-server.ts",
    "example:client": "tsx examples/client-example.ts",
    "example:inspector": "tsx examples/mcp-inspector-test.ts",
    "example:test": "tsx examples/test-server.ts",
    "example:simple": "tsx examples/test-simple.ts",
    "example:service-integration": "tsx examples/service-integration-test.ts",
    "test:stdio": "tsx examples/test-stdio-client.js",
    "test:http": "tsx examples/test-http-client.js",
    "test:websocket": "tsx examples/test-websocket-client.js",
    "test:tcp": "tsx examples/test-tcp-client.js",
    "server:http": "node examples/test-servers/http-server.js",
    "server:websocket": "node examples/test-servers/websocket-server.js",
    "server:tcp": "node examples/test-servers/tcp-server.js",
    "port:status": "node scripts/port-manager.js status",
    "port:kill": "node scripts/port-manager.js kill",
    "port:kill-all": "node scripts/port-manager.js kill-all --force",
    "port:clean": "node scripts/port-manager.js kill-all --force",
    "inspector:clean": "lsof -i :6277 -t | xargs kill -9 2>/dev/null; lsof -i :6274 -t | xargs kill -9 2>/dev/null || true",
    "inspector:restart": "npm run inspector:clean && sleep 1 && npm run inspector",
    "test:servers": "node scripts/test-with-servers.js",
    "test:integration": "node scripts/test-with-servers.js 'node tests/test-transport-integration.js'",
    "test:federation": "node tests/test-federation.js",
    "inspector:reset": "node scripts/port-manager.js kill 6274 --force && node scripts/port-manager.js kill 6277 --force && npm run inspector",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:ui": "vitest --ui",
    "test:duckpgq": "tsx scripts/test-duckpgq.ts",
    "test:duckpgq:syntax": "tsx scripts/test-duckpgq-syntax.ts",
    "test:duckpgq:failures": "tsx scripts/test-duckpgq-failures.ts",
    "test:process:generate": "tsx scripts/generate-test-data.ts",
    "test:process:inspect": "tsx scripts/inspect-test-data.ts",
    "test:process:p2.8": "PROCESS_EMBEDDING_DIM=1024 tsx scripts/test-p2.8-embeddings.ts",
    "test:process:p2.9": "tsx scripts/test-p2.9-composition.ts",
    "test:process:all": "npm run test:process:p2.8 && npm run test:process:p2.9",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write 'src/**/*.{ts,tsx,js,jsx,json,md}'",
    "format:check": "prettier --check 'src/**/*.{ts,tsx,js,jsx,json,md}'",
    "typecheck": "tsc --noEmit",
    "check:all": "npm run typecheck && npm run lint && npm run format:check && npm run test",
    "inspector": "npx @modelcontextprotocol/inspector tsx src/server/mcp-server.ts",
    "example:query": "tsx examples/query-example.ts",
    "prepare": "husky",
    "prepublishOnly": "npm run build",
    "prepublish:full": "npm run check:all && npm run build",
    "release": "echo 'Please use GitHub release-please workflow instead'",
    "release:minor": "echo 'Please use GitHub release-please workflow instead'",
    "release:major": "echo 'Please use GitHub release-please workflow instead'"
  },
  "keywords": [
    "duckdb",
    "mcp",
    "model-context-protocol",
    "sql",
    "database",
    "typescript",
    "nodejs"
  ],
  "author": "Deposium",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/theseedship/duckdb_mcp_node.git"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "bugs": {
    "url": "https://github.com/theseedship/duckdb_mcp_node/issues"
  },
  "homepage": "https://github.com/theseedship/duckdb_mcp_node#readme",
  "dependencies": {
    "@duckdb/node-api": "1.5.4-r.1",
    "@modelcontextprotocol/sdk": "^1.26.0",
    "axios": "^1.13.1",
    "dotenv": "^17.2.3",
    "ws": "^8.18.3",
    "zod": "^4.1.13"
  },
  "devDependencies": {
    "@commitlint/cli": "^20.2.0",
    "@commitlint/config-conventional": "^20.2.0",
    "@types/node": "^22.19.2",
    "@types/ws": "^8.18.1",
    "@typescript-eslint/eslint-plugin": "^8.49.0",
    "@typescript-eslint/parser": "^8.49.0",
    "@vitest/coverage-v8": "^4.0.15",
    "@vitest/ui": "^4.0.15",
    "eslint": "^9.39.2",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.4",
    "happy-dom": "^20.0.11",
    "husky": "^9.1.7",
    "lint-staged": "^16.2.7",
    "prettier": "^3.7.4",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "vitest": "^4.0.15"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "lint-staged": {
    "src/**/*.{ts,tsx}": [
      "eslint --fix",
      "prettier --write"
    ],
    "*.{js,jsx,json,md,yml,yaml}": [
      "prettier --write"
    ],
    "vitest.config.ts": [
      "prettier --write"
    ]
  }
}
