{
  "name": "@stlite/browser",
  "version": "0.83.0",
  "type": "module",
  "description": "Browser Stlite",
  "keywords": [
    "stlite",
    "streamlit",
    "pyodide",
    "webassembly",
    "wasm"
  ],
  "bugs": {
    "url": "https://github.com/whitphx/stlite/issues"
  },
  "license": "Apache-2.0",
  "author": {
    "name": "Yuichiro Tachibana (Tsuchiya)",
    "url": "https://www.whitphx.info/"
  },
  "files": [
    "build/"
  ],
  "exports": {
    ".": {
      "import": {
        "types": "./build/stlite.d.ts",
        "default": "./build/stlite.js"
      }
    },
    "./wheels/*.whl": "./build/wheels/*.whl"
  },
  "browser": "./build/stlite.js",
  "types": "./build/stlite.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/whitphx/stlite.git",
    "directory": "packages/browser"
  },
  "devDependencies": {
    "@emotion/babel-plugin": "^11.13.5",
    "@stlite/common": "^0.83.0",
    "@stlite/common-react": "^0.83.0",
    "@stlite/devutils": "^0.83.0",
    "@stlite/kernel": "^0.83.0",
    "@streamlit/app": "^1.45.1",
    "@types/react": "^18.2.0",
    "@types/react-dom": "^18.2.0",
    "@vitejs/plugin-react": "^4.3.4",
    "codedent": "^0.1.2",
    "eslint": "^8.33.0",
    "prettier": "^3.4.2",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "typescript": "^5.7.3",
    "vite": "^6.2.2",
    "vite-plugin-dts": "^4.5.3",
    "vite-plugin-static-copy": "^2.2.0",
    "vite-plugin-top-level-await": "^1.4.4",
    "vite-plugin-wasm": "^3.4.1",
    "vitest": "^3.0.9",
    "web-vitals": "^4.2.4"
  },
  "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:eslint": "eslint --fix 'src/**/*.{ts,tsx}'",
    "fix:prettier": "prettier --write .",
    "check:eslint": "eslint 'src/**/*.{ts,tsx}'",
    "check:prettier": "prettier --check ."
  },
  "browserslist": [
    ">0.2%",
    "not dead",
    "not ie <= 11",
    "not op_mini all"
  ]
}