{
  "name": "@ui-bridge/components",
  "version": "1.1.1",
  "description": "Lit web components for the UI Bridge browser panel",
  "license": "MIT",
  "homepage": "https://ui-bridge.mariohamann.com",
  "repository": {
    "type": "git",
    "url": "https://github.com/mariohamann/ui-bridge",
    "directory": "core/components"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./styles/tokens": {
      "import": "./dist/styles/tokens.js",
      "types": "./dist/styles/tokens.d.ts"
    },
    "./state/knobs-store": {
      "import": "./dist/state/knobs-store.js",
      "types": "./dist/state/knobs-store.d.ts"
    },
    "./state/comments-store": {
      "import": "./dist/state/comments-store.js",
      "types": "./dist/state/comments-store.d.ts"
    },
    "./state/intents": {
      "import": "./dist/state/intents.js",
      "types": "./dist/state/intents.d.ts"
    },
    "./comment": {
      "import": "./dist/comment/index.js",
      "types": "./dist/comment/index.d.ts"
    },
    "./comment/utils": {
      "import": "./dist/comment/uib-comment-utils.js",
      "types": "./dist/comment/uib-comment-utils.d.ts"
    },
    "./orphaned": {
      "import": "./dist/orphaned/index.js",
      "types": "./dist/orphaned/index.d.ts"
    }
  },
  "wireit": {
    "build": {
      "command": "tsc -p tsconfig.json",
      "dependencies": [
        "../protocol:build"
      ],
      "files": [
        "src/**/*.ts",
        "tsconfig.json"
      ],
      "output": [
        "dist/**"
      ]
    },
    "dev": {
      "command": "tsc -p tsconfig.json --watch --preserveWatchOutput",
      "service": {
        "readyWhen": {
          "lineMatches": "Watching for file changes"
        }
      },
      "dependencies": [
        "../protocol:dev"
      ],
      "files": [
        "src/**/*.ts",
        "tsconfig.json"
      ]
    }
  },
  "dependencies": {
    "@awesome.me/webawesome": "^3.7.0",
    "@floating-ui/dom": "^1.7.6",
    "@lit-labs/signals": "^0.2.0",
    "autosize": "^6.0.1",
    "lit": "^3.3.0",
    "signal-polyfill": "^0.2.2",
    "@ui-bridge/protocol": "1.1.1"
  },
  "devDependencies": {
    "@types/autosize": "^4.0.3",
    "typescript": "~6.0.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "wireit",
    "dev": "wireit",
    "typecheck": "tsc --noEmit -p tsconfig.json",
    "test": "node --loader ./tests/css-loader.mjs --test tests/stores.test.mjs",
    "postinstall": "cp -r node_modules/@awesome.me/webawesome/dist/skills/webawesome ../../.agents/skills"
  }
}