{
  "name": "@xlibrary/plugin-sdk",
  "version": "2.1.0",
  "description": "Typed contracts and test tools for XLibrary plugins.",
  "license": "MIT",
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "xlibrary-plugin": "./bin/xlibrary-plugin.mjs"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/medzhidov/xlibrary.git",
    "directory": "packages/plugin-sdk"
  },
  "homepage": "https://github.com/medzhidov/xlibrary",
  "bugs": {
    "url": "https://github.com/medzhidov/xlibrary/issues"
  },
  "keywords": [
    "xlibrary",
    "plugin",
    "sdk",
    "electron",
    "game-library"
  ],
  "engines": {
    "node": ">=20"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./testing": {
      "types": "./dist/testing.d.ts",
      "import": "./dist/testing.js"
    }
  },
  "files": [
    "bin",
    "dist",
    "README.md",
    "LICENSE",
    "templates",
    "docs"
  ],
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "typescript": "^5.4.2",
    "vitest": "^2.1.9"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "test": "vitest run",
    "type-check": "tsc --noEmit"
  }
}