{
  "name": "teaful",
  "version": "0.12.1",
  "description": "Tiny, easy and powerful React state management (less than 1kb)",
  "license": "MIT",
  "keywords": [
    "react",
    "typescript",
    "preact",
    "state",
    "state management",
    "store",
    "javascript"
  ],
  "author": {
    "name": "Aral Roca Gòmez",
    "email": "contact@aralroca.com"
  },
  "files": [
    "dist",
    "package"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/teafuljs/teaful.git"
  },
  "source": "package/index.ts",
  "main": "dist/index.js",
  "umd:main": "dist/index.umd.js",
  "module": "dist/index.m.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js",
      "default": "./dist/index.modern.js"
    }
  },
  "bundlewatch": {
    "files": [
      {
        "path": "./dist/index.js",
        "maxSize": "1 kB"
      },
      {
        "path": "./dist/index.modern.js",
        "maxSize": "1.1 kB"
      },
      {
        "path": "./dist/index.m.js",
        "maxSize": "1 kB"
      },
      {
        "path": "./dist/index.umd.js",
        "maxSize": "1 kB"
      }
    ]
  },
  "types": "dist/index.d.ts",
  "scripts": {
    "lint": "eslint ./package ./tests",
    "format": "eslint --fix ./package ./tests",
    "format:examples": "eslint --fix ./examples",
    "test": "jest",
    "test:example:todo-list": "jest ./examples/todo-list",
    "test:examples": "jest ./examples",
    "test:watch": "jest ./tests --watch",
    "build": "microbundle --jsx React.createElement",
    "dev": "microbundle watch",
    "prepublish": "yarn build",
    "bundlewatch": "bundlewatch"
  },
  "peerDependencies": {
    "react": ">= 18.0.0",
    "teaful-devtools": ">= 0.4.0"
  },
  "peerDependenciesMeta": {
    "teaful-devtools": {
      "optional": true
    }
  },
  "jest": {
    "projects": [
      "./tests/config/jest.config.js",
      "./tests/config/jest.lint.config.js",
      "./tests/config/jest.tsc.config.js"
    ]
  },
  "jest-runner-tsc": {
    "tsconfigPath": "./tsconfig.json"
  },
  "devDependencies": {
    "@babel/polyfill": "7.12.1",
    "@babel/preset-env": "7.16.11",
    "@babel/preset-react": "7.16.7",
    "@babel/preset-typescript": "7.16.7",
    "@testing-library/dom": "10.4.0",
    "@testing-library/react": "16.3.2",
    "@testing-library/user-event": "13.5.0",
    "@types/jest": "27.4.1",
    "@types/react": "19.2.14",
    "@types/react-dom": "19.2.3",
    "@typescript-eslint/eslint-plugin": "5.15.0",
    "@typescript-eslint/parser": "5.15.0",
    "babel-jest": "27.5.1",
    "bundlewatch": "0.3.3",
    "eslint": "8.11.0",
    "eslint-config-google": "0.14.0",
    "eslint-plugin-jest": "26.1.1",
    "eslint-plugin-react": "7.29.4",
    "eslint-plugin-react-hooks": "4.3.0",
    "eslint-plugin-testing-library": "5.1.0",
    "jest": "27.5.1",
    "jest-runner-eslint": "1.0.0",
    "jest-runner-tsc": "1.6.0",
    "microbundle": "0.14.2",
    "react": "19.2.4",
    "react-dom": "19.2.4",
    "react-test-renderer": "19.0.0"
  },
  "bugs": "https://github.com/teafuljs/teaful/issues"
}
