{
  "name": "react-storage-drafts",
  "version": "1.1.0",
  "description": "React Drafts is a library for creating, saving, and managing local documents in React applications.",
  "author": "BossBele",
  "license": "MIT",
  "repository": "BossBele/react-storage-drafts",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "keywords": [
    "react",
    "drafts",
    "local-storage",
    "autosave",
    "documents"
  ],
  "bugs": {
    "url": "https://github.com/BossBele/react-storage-drafts/issues"
  },
  "homepage": "https://github.com/BossBele/react-storage-drafts#readme",
  "scripts": {
    "build": "tsc --build",
    "prepublishOnly": "rimraf dist && yarn build"
  },
  "peerDependencies": {
    "react": "^17 || ^18",
    "react-dom": "^17 || ^18"
  },
  "devDependencies": {
    "@types/react": "^18.3.12",
    "rimraf": "^5.0.0",
    "typescript": "^5.6.3"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "dependencies": {
    "@react-native-community/netinfo": "^11.4.1",
    "nanoid": "^5.1.5"
  }
}