{
  "name": "webinfer",
  "version": "0.0.5",
  "description": "High-performance LLM inference kernels for WebGPU",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/guan404ming/webinfer"
  },
  "keywords": [
    "webgpu",
    "llm",
    "inference",
    "gpu",
    "machine-learning",
    "transformer",
    "attention",
    "matmul"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "dev": "bun --hot benchmarks/server.ts",
    "bench": "open http://localhost:3000 && bun --hot benchmarks/server.ts",
    "build": "bun run build:types && bun run build:js",
    "build:types": "tsc -p tsconfig.build.json",
    "build:js": "bun build ./src/index.ts --outdir ./dist --target browser --format esm",
    "test": "bun test",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "bun run build"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@webgpu/types": "^0.1.49",
    "onnxruntime-web": "^1.20.1",
    "typescript": "^5.3.0"
  },
  "peerDependencies": {
    "@webgpu/types": "^0.1.0"
  }
}
