{
  "name": "solidworks-mcp-server",
  "version": "3.0.9",
  "description": "Clean Architecture SolidWorks MCP Server - Production-ready with SOLID principles",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "solidworks-mcp-server": "./dist/index.js"
  },
  "scripts": {
    "build": "tsc",
    "build:refactored": "tsc --project tsconfig.refactored.json",
    "dev": "tsx watch src/index.ts",
    "dev:refactored": "tsx watch src/index.refactored.ts",
    "start": "node dist/index.js",
    "start:refactored": "node dist/index.refactored.js",
    "migrate": "tsx Fixes-V2/migrate.ts",
    "lint": "eslint src",
    "typecheck": "tsc --noEmit",
    "test": "vitest"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.1",
    "chromadb": "^1.8.1",
    "dotenv": "^16.4.5",
    "handlebars": "^4.7.8",
    "mssql": "^11.0.0",
    "pg": "^8.16.0",
    "uuid": "^11.0.0",
    "winax": "^3.4.2",
    "winston": "^3.15.0",
    "zod": "^3.23.8",
    "zod-to-json-schema": "^3.24.6"
  },
  "devDependencies": {
    "@eslint/js": "^9.32.0",
    "@types/dotenv": "^6.1.1",
    "@types/mssql": "^9.1.7",
    "@types/node": "^22.5.1",
    "@types/pg": "^8.15.5",
    "@types/uuid": "^10.0.0",
    "@typescript-eslint/eslint-plugin": "^8.4.0",
    "@typescript-eslint/parser": "^8.4.0",
    "eslint": "^9.9.1",
    "prettier": "^3.3.3",
    "tsx": "^4.7.0",
    "typescript": "^5.5.4",
    "vitest": "^1.2.1"
  },
  "keywords": [
    "mcp",
    "solidworks",
    "cad",
    "automation",
    "vba",
    "clean-architecture",
    "solid-principles",
    "production-ready"
  ],
  "author": "SolidWorks MCP Contributors",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vespo92/SolidworksMCP-TS.git"
  },
  "bugs": {
    "url": "https://github.com/vespo92/SolidworksMCP-TS/issues"
  },
  "homepage": "https://github.com/vespo92/SolidworksMCP-TS#readme",
  "files": [
    "dist/",
    "scripts/",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "engines": {
    "node": ">=20.0.0"
  }
}
