{
  "name": "react-stomp-hooks",
  "version": "3.0.1",
  "type": "module",
  "description": "A react library to interact with a stomp connection via hooks",
  "author": "Sven Kirschbaum",
  "license": "MIT",
  "repository": "github:SvenKirschbaum/react-stomp-hooks",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    "import": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "require": {
      "types": "./dist/index.d.cts",
      "default": "./dist/index.cjs"
    }
  },
  "scripts": {
    "build": "tsup",
    "watch": "npm run build -- --watch src",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint": "eslint",
    "lint:fix": "eslint --fix"
  },
  "peerDependencies": {
    "react": ">16.8.0"
  },
  "dependencies": {
    "@stomp/stompjs": "^7.0.0",
    "@types/sockjs-client": "^1.5.1",
    "sockjs-client": "^1.6.0"
  },
  "devDependencies": {
    "@eslint/compat": "^1.1.0",
    "@eslint/js": "^9.5.0",
    "@swc/core": "^1.6.5",
    "@types/react": "^18.3.3",
    "@types/react-dom": "^18.3.0",
    "eslint": "^9.5.0",
    "eslint-plugin-react": "^7.34.3",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-vitest": "^0.5.4",
    "eslint-plugin-vitest-globals": "^1.5.0",
    "globals": "^15.6.0",
    "prettier": "^3.3.2",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "tsup": "^8.1.0",
    "typescript": "^5.5.2",
    "typescript-eslint": "^7.13.1"
  },
  "overrides": {
    "eslint": "^9.5.0"
  },
  "files": [
    "dist"
  ]
}
