{
  "name": "@illuma-ai/nodepod",
  "version": "1.2.2",
  "description": "Browser-native Node.js runtime environment",
  "type": "module",
  "license": "SEE LICENSE IN LICENSE",
  "author": "Illuma AI (https://github.com/illuma-ai)",
  "publishConfig": {
    "access": "public"
  },
  "contributors": [
    "R1ck404 (https://github.com/R1ck404)"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/illuma-ai/nodepod.git"
  },
  "bugs": {
    "url": "https://github.com/illuma-ai/nodepod/issues"
  },
  "homepage": "https://github.com/illuma-ai/nodepod#readme",
  "keywords": [
    "node",
    "browser",
    "runtime",
    "sandbox",
    "typescript",
    "virtual-filesystem",
    "polyfill",
    "webcontainer",
    "in-browser",
    "nodejs"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "files": [
    "src",
    "dist"
  ],
  "sideEffects": false,
  "scripts": {
    "build:lib": "vite build --config vite.lib.config.js && node -e \"require('fs').copyFileSync('static/__sw__.js','dist/__sw__.js')\"",
    "build:types": "tsc --project tsconfig.build.json",
    "build:publish": "npm run build:lib && npm run build:types",
    "type-check": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "bench": "vitest bench",
    "bench:run": "vitest bench --run"
  },
  "dependencies": {
    "acorn": "^8.15.0",
    "acorn-jsx": "^5.3.2",
    "brotli": "^1.3.3",
    "brotli-wasm": "^3.0.1",
    "comlink": "^4.4.2",
    "pako": "^2.1.0",
    "resolve.exports": "^2.0.3",
    "zod": "^4.3.6"
  },
  "peerDependencies": {
    "@xterm/xterm": "^6.0.0",
    "@xterm/addon-fit": "^0.11.0",
    "@xterm/addon-webgl": "^0.19.0"
  },
  "peerDependenciesMeta": {
    "@xterm/xterm": {
      "optional": true
    },
    "@xterm/addon-fit": {
      "optional": true
    },
    "@xterm/addon-webgl": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "^25.0.10",
    "@types/pako": "^2.0.4",
    "esbuild": "^0.27.2",
    "typescript": "^5.9.3",
    "vite": "^5.4.0",
    "vite-plugin-top-level-await": "^1.6.0",
    "vite-plugin-wasm": "^3.5.0",
    "vitest": "^4.0.18"
  }
}
