{
  "name": "@ricsam/isolate-core",
  "version": "0.1.19",
  "main": "./dist/cjs/index.cjs",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "require": "./dist/cjs/index.cjs",
      "import": "./dist/mjs/index.mjs"
    },
    "./isolate": {
      "types": "./dist/types/isolate.d.ts"
    }
  },
  "scripts": {
    "build": "tsc",
    "test": "node --test --experimental-strip-types 'src/**/*.test.ts'",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    "linkedom": "^0.18.12"
  },
  "peerDependencies": {
    "isolated-vm": "^6"
  },
  "author": "ricsam <oss@ricsam.dev>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ricsam/isolate.git",
    "directory": "packages/core"
  },
  "bugs": {
    "url": "https://github.com/ricsam/isolate/issues"
  },
  "homepage": "https://github.com/ricsam/isolate#readme",
  "keywords": [
    "isolated-vm",
    "sandbox",
    "javascript",
    "runtime",
    "fetch",
    "filesystem",
    "streams",
    "v8",
    "isolate"
  ],
  "description": "Core utilities and class builder for isolated-vm V8 sandbox bindings",
  "module": "./dist/mjs/index.mjs",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "README.md"
  ]
}