{
  "name": "@bjorn3/browser_wasi_shim",
  "version": "0.4.2",
  "license": "MIT OR Apache-2.0",
  "description": "A pure javascript shim for WASI",
  "type": "module",
  "scripts": {
    "build": "swc src -d dist -s true && tsc --emitDeclarationOnly",
    "prepare": "swc src -d dist && tsc --emitDeclarationOnly",
    "test:node": "./test/run-testsuite.sh node",
    "test:browser": "playwright-core install && ./test/run-testsuite.sh browser",
    "test": "npm run test:node && npm run test:browser",
    "check": "tsc --noEmit && prettier src -c && eslint src/"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bjorn3/browser_wasi_shim.git"
  },
  "author": "bjorn3",
  "bugs": {
    "url": "https://github.com/bjorn3/browser_wasi_shim/issues"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./typings/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "typings": "./typings/index.d.ts",
  "homepage": "https://github.com/bjorn3/browser_wasi_shim#readme",
  "devDependencies": {
    "@swc/cli": "^0.1.62",
    "@swc/core": "^1.3.37",
    "@typescript-eslint/eslint-plugin": "^6.7.4",
    "@typescript-eslint/parser": "^6.7.4",
    "eslint": "^8.50.0",
    "playwright": "^1.40.1",
    "prettier": "^3.0.3",
    "typescript": "^4.9.5"
  }
}
