{
  "private": false,
  "version": "0.0.67",
  "name": "@polymedia/suitcase-react",
  "author": "@juzybits (https://polymedia.app)",
  "homepage": "https://github.com/juzybits/polymedia-suitcase",
  "description": "React components for Sui apps",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/juzybits/polymedia-suitcase"
  },
  "keywords": [
    "polymedia",
    "sui",
    "suitcase",
    "react"
  ],
  "dependencies": {
    "normalize.css": "^8.0.1",
    "@polymedia/suitcase-core": "0.0.67"
  },
  "peerDependencies": {
    "@mysten/dapp-kit": "^0.17.7",
    "@mysten/sui": "^1.37.6",
    "react": "^18.0.0 || ^19.0.0",
    "react-router-dom": "^7.0.0"
  },
  "devDependencies": {
    "@types/react": "^19.1.12",
    "concurrently": "^9.2.1"
  },
  "type": "module",
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist/"
  ],
  "types": "./dist/esm/index.d.ts",
  "module": "./dist/esm/index.js",
  "main": "./dist/cjs/index.js",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    },
    "./*.css": {
      "import": "./dist/esm/*.css",
      "require": "./dist/cjs/*.css"
    }
  },
  "scripts": {
    "build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && cp src/*.css dist/esm/ && cp src/*.css dist/cjs/",
    "clean": "rm -rf dist/ node_modules/ .turbo/",
    "dev": "tsc --watch -p tsconfig.esm.json",
    "dev:all": "concurrently 'pnpm dev' 'pnpm dev:styles'",
    "dev:styles": "fswatch -0 src/*.css | xargs -0 -I {} cp src/*.css dist/esm/ && cp src/*.css dist/cjs/",
    "lint:fix": "biome check --write *.* src/",
    "lint:unsafe": "biome check --write --unsafe *.* src/",
    "lint": "biome check *.* src/",
    "test": "jest --verbose --passWithNoTests",
    "typecheck": "tsc -p tsconfig.esm.json"
  }
}