{
  "name": "@jax-js/jax",
  "version": "0.1.11",
  "description": "Numerical computing and ML in the browser",
  "keywords": [
    "machine learning",
    "jax",
    "numpy",
    "numerical computing"
  ],
  "author": {
    "name": "Eric Zhang",
    "email": "ekzhang1@gmail.com",
    "url": "https://www.ekzhang.com"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ekzhang/jax-js.git"
  },
  "type": "module",
  "files": [
    "/dist/*.{js,cjs,d.ts,d.cts}"
  ],
  "main": "dist/index.js",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./dist/index.d.ts": {
      "import": "./dist/index.d.ts",
      "require": "./dist/index.d.cts"
    }
  },
  "types": "dist/index.d.ts",
  "module": "dist/index.js",
  "license": "MIT",
  "devDependencies": {
    "@eslint/js": "^9.31.0",
    "@types/debug": "^4.1.12",
    "@vitest/browser-playwright": "^4.1.0",
    "@vitest/coverage-v8": "^4.1.0",
    "@webgpu/types": "^0.1.68",
    "eslint": "^9.31.0",
    "eslint-plugin-import": "^2.32.0",
    "globals": "^16.0.0",
    "playwright": "~1.58.2",
    "prettier": "^3.6.2",
    "prettier-plugin-svelte": "^3.4.0",
    "tsdown": "^0.13.2",
    "tsx": "^4.20.3",
    "typedoc": "^0.28.14",
    "typedoc-theme-fresh": "^0.2.3",
    "typescript": "~5.9.3",
    "typescript-eslint": "^8.46.4",
    "vitest": "^4.1.0"
  },
  "engines": {
    "pnpm": ">=10.0.0"
  },
  "prettier": {
    "plugins": [
      "prettier-plugin-svelte"
    ],
    "overrides": [
      {
        "files": [
          "*.md"
        ],
        "options": {
          "printWidth": 100
        }
      }
    ],
    "proseWrap": "always"
  },
  "scripts": {
    "build": "tsdown",
    "build:watch": "TSDOWN_WATCH_MODE=1 tsdown",
    "check": "tsc",
    "docs": "tsx typedoc.ts",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint": "eslint",
    "test": "vitest",
    "test:coverage": "vitest run --coverage && open coverage/index.html"
  }
}