{
  "name": "@suspensive/react-await",
  "version": "0.2.2",
  "description": "Useful interfaces for React Suspense",
  "keywords": [
    "suspensive",
    "react"
  ],
  "homepage": "https://suspensive.org",
  "bugs": "https://github.com/toss/suspensive/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/toss/suspensive.git",
    "directory": "packages/react-await"
  },
  "license": "MIT",
  "author": "Jonghyeon Ko <jonghyeon@toss.im>",
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "src"
  ],
  "dependencies": {
    "@suspensive/utils": "2.9.0"
  },
  "devDependencies": {
    "@types/react": "^18.3.3",
    "@types/react-dom": "^18.3.0",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "@suspensive/eslint-config": "0.0.0",
    "@suspensive/react": "2.9.0",
    "@suspensive/tsconfig": "0.0.0-development",
    "@suspensive/tsup": "0.0.0"
  },
  "peerDependencies": {
    "react": "^18"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "ci:attw": "attw --pack",
    "ci:eslint": "eslint \"**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts}\"",
    "ci:publint": "publint --strict",
    "ci:test": "vitest run --coverage --typecheck",
    "ci:test:watch": "vitest --ui --coverage --typecheck",
    "ci:type": "tsc --noEmit",
    "clean": "rimraf ./dist && rimraf ./coverage",
    "dev": "tsup --watch"
  }
}