{
  "name": "@bytecodealliance/preview3-shim",
  "version": "0.2.0",
  "description": "WASI Preview3 shim for JS environments",
  "homepage": "https://github.com/bytecodealliance/jco/blob/main/packages/preview3-shim/#readme",
  "bugs": {
    "url": "https://github.com/bytecodealliance/jco/issues"
  },
  "license": "(Apache-2.0 WITH LLVM-exception)",
  "author": "Tomasz Andrzejak",
  "contributors": [
    {
      "name": "Tomasz Andrzejak"
    },
    {
      "name": "Victor Adossi",
      "email": "vadossi@cosmonic.com"
    }
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bytecodealliance/jco.git"
  },
  "files": [
    "types",
    "dist"
  ],
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/nodejs/index.d.ts",
      "node": "./dist/nodejs/index.js"
    },
    "./*": {
      "types": "./dist/nodejs/*.d.ts",
      "node": "./dist/nodejs/*.js"
    },
    "./interfaces/*": {
      "types": "./types/interfaces/*.d.ts"
    }
  },
  "dependencies": {
    "@bytecodealliance/preview2-shim": "^0.19.0"
  },
  "devDependencies": {
    "@types/node": "^24.12.4",
    "globals": "^17.6.0",
    "typescript": "^6.0.3",
    "vite": "^8.0.16",
    "vitest": "^4.0.8"
  },
  "scripts": {
    "build": "tsc --project tsconfig.build.json",
    "build:watch": "tsc --watch",
    "types:check": "tsc --noEmit",
    "fmt": "oxfmt",
    "fmt:check": "oxfmt --check",
    "lint": "oxlint",
    "lint:fix": "oxlint --fix",
    "pretest": "pnpm run build",
    "test": "vitest --run",
    "prebench": "pnpm run build",
    "bench": "vitest bench --run"
  }
}