{
  "name": "@quereus/plugin-loader",
  "version": "4.4.0",
  "type": "module",
  "description": "Plugin loading system for Quereus - supports dynamic imports for Node.js and browsers",
  "publisher": "Got Choices Foundation",
  "repository": {
    "type": "git",
    "url": "https://github.com/gotchoices/quereus.git",
    "directory": "packages/plugin-loader"
  },
  "license": "MIT",
  "main": "dist/src/index.js",
  "types": "./dist/src/index.d.ts",
  "files": [
    "dist",
    "!**/*.tsbuildinfo"
  ],
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "import": "./dist/src/index.js"
    }
  },
  "scripts": {
    "clean": "rimraf dist",
    "build": "tsc",
    "lint": "echo 'No lint configured'",
    "typecheck": "tsc --noEmit",
    "//test": "NOTE: test/config-channel.spec.ts covers the plugin config channel only; url parsing/validation, npm-spec resolution, and CDN url building are still untested — this is core infrastructure, so that gap is tracked as debt, not shrugged off: see tickets/backlog/debt-plugin-loader-test-coverage.md. --passWithNoTests stays so an empty glob (or a future test-file rename) doesn't fail the build.",
    "test": "vitest run --passWithNoTests"
  },
  "peerDependencies": {
    "@quereus/quereus": "^4.4.0"
  },
  "devDependencies": {
    "@types/debug": "^4.1.13",
    "@types/node": "^25.9.3",
    "rimraf": "^6.1.3",
    "typescript": "^5.9.3",
    "vitest": "^4.0.17"
  },
  "dependencies": {
    "@quereus/quereus": "^4.4.0",
    "debug": "^4.4.3"
  }
}