{
  "name": "@grafana/llm",
  "version": "1.0.9",
  "description": "A library for working with LLMs in Grafana plugins",
  "repository": {
    "type": "git",
    "url": "https://github.com/grafana/grafana-llm-app.git",
    "directory": "packages/grafana-llm-frontend"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.mts",
        "import": "./dist/esm/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "require": "./dist/index.cjs"
      }
    },
    "./jest": {
      "import": {
        "types": "./dist/esm/jest.d.mts",
        "import": "./dist/esm/jest.mjs"
      },
      "require": {
        "types": "./dist/jest.d.cts",
        "require": "./dist/jest.cjs"
      }
    }
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "main": "./dist/index.cjs",
  "module": "./dist/esm/index.mjs",
  "source": "./src/index.ts",
  "types": "./dist/esm/index.d.mts",
  "type": "module",
  "sideEffects": false,
  "scripts": {
    "dev": "rollup --config --watch",
    "build": "rollup --config",
    "test": "jest",
    "test:watch": "jest --watch --onlyChanged",
    "test:ci": "jest",
    "typecheck": "tsc --noEmit",
    "lint": "eslint --cache --ext .js,.jsx,.ts,.tsx . && npm run typecheck && npm run lint:package && npm run lint:types",
    "lint:fix": "npm run lint -- --fix",
    "lint:package": "publint",
    "lint:types": "attw --pack .",
    "format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
    "format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\""
  },
  "keywords": [],
  "author": "Grafana",
  "license": "Apache-2.0",
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.18.2",
    "@grafana/data": "^10.4.0 || ^11 || ^12",
    "@grafana/runtime": "^10.4.0 || ^11 || ^12",
    "@rollup/plugin-node-resolve": "^16.0.0",
    "@types/semver": "^7.7.1",
    "prettier": "^3.4.2",
    "react": "^18",
    "rollup": "^4.30.1",
    "rollup-plugin-dts": "^6.1.1",
    "rollup-plugin-esbuild": "^6.1.1",
    "rollup-plugin-node-externals": "^8.0.0",
    "rxjs": "^7.8.2",
    "typescript": "5.9.3"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.26.0",
    "publint": "^0.3.12",
    "react-use": "^17.6.0",
    "semver": "^7.6.3",
    "uuid": "^14.0.0"
  },
  "peerDependencies": {
    "@grafana/data": "^10.4.0 ||^11 || ^12",
    "@grafana/runtime": "^10.4.0 || ^11 || ^12",
    "react": "^18",
    "rxjs": "^7.8.2"
  }
}
