{
  "packageManager": "yarn@3.6.3",
  "name": "@encore.dev/internal-runtime",
  "description": "Encore's shared runtime between all javascript runtimes, it is internal and should not be referenced directly",
  "version": "0.0.0-devel.202311141645",
  "license": "MPL-2.0",
  "bugs": {
    "url": "https://github.com/encoredev/encore/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/encoredev/encore",
    "directory": "runtimes/js/packages/@encore.dev/internal-runtime"
  },
  "scripts": {
    "build": "tsc -b",
    "lint": "eslint \"**/*.ts*\"",
    "test": "bun test",
    "test:watch": "bun test --watch"
  },
  "type": "module",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./index.ts",
      "bun": "./index.ts",
      "default": "./dist/index.js"
    },
    "./log": {
      "types": "./log/mod.ts",
      "bun": "./log/mod.ts",
      "default": "./dist/log/mod.js"
    },
    "./log/internal": {
      "types": "./log/internal/mod.ts",
      "bun": "./log/internal/mod.ts",
      "default": "./dist/log/internal/mod.js"
    },
    "./compat/*": {
      "bun": "./compat/*.bun.ts",
      "types": "./compat/*.node.ts",
      "default": "./dist/compat/*.node.js"
    },
    "./*": {
      "types": "./*.ts",
      "bun": "./*.ts",
      "default": "./dist/*.js"
    }
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "dist/",
    "*.ts",
    "**/*.ts",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@encore.dev/sidecar-api": "0.0.0-devel.202311141645"
  },
  "devDependencies": {
    "bun-types": "^1.0.5-canary.20231009T140142",
    "web-streams-polyfill": "^3.2.1"
  }
}