{
  "name": "@stlite/browser",
  "version": "1.8.1",
  "description": "Browser Stlite",
  "keywords": [
    "pyodide",
    "stlite",
    "streamlit",
    "wasm",
    "webassembly"
  ],
  "bugs": {
    "url": "https://github.com/whitphx/stlite/issues"
  },
  "license": "Apache-2.0",
  "author": {
    "name": "Yuichiro Tachibana (Tsuchiya)",
    "url": "https://www.whitphx.info/"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/whitphx/stlite.git",
    "directory": "packages/browser"
  },
  "files": [
    "build/"
  ],
  "type": "module",
  "browser": "./build/stlite.js",
  "types": "./build/stlite.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./build/stlite.d.ts",
        "default": "./build/stlite.js"
      }
    },
    "./wheels/*.whl": "./build/wheels/*.whl",
    "./package.json": "./package.json"
  },
  "scripts": {
    "start": "vite",
    "build": "tsc --noEmit && vite build",
    "test": "vitest",
    "test:e2e": "cd e2e-tests && yarn test",
    "test:e2e:headed": "cd e2e-tests && yarn run test:headed",
    "test:e2e:ui": "cd e2e-tests && yarn run test:ui",
    "test:e2e:setup": "cd e2e-tests && yarn install && yarn run install:browsers",
    "fix:lint": "oxlint --fix src",
    "fix:format": "oxfmt .",
    "check:lint": "oxlint src",
    "check:format": "oxfmt --check ."
  },
  "devDependencies": {
    "@laynezh/vite-plugin-lib-assets": "^2.1.3",
    "@stlite/common": "^0.90.3",
    "@stlite/react": "^1.7.1",
    "@types/react": "^18.2.0",
    "@types/react-dom": "^18.2.0",
    "@vitejs/plugin-react": "^5.1.1",
    "codedent": "^0.1.2",
    "oxfmt": "^0.45.0",
    "oxlint": "^1.60.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "rollup-plugin-visualizer": "^5.12.0",
    "typescript": "^5.9.3",
    "vite": "^8.0.7",
    "vite-plugin-dts": "^4.5.4",
    "vitest": "^4.1.3"
  },
  "browserslist": [
    ">0.2%",
    "not dead",
    "not ie <= 11",
    "not op_mini all"
  ]
}