{
  "name": "dakpan",
  "version": "2.3.2",
  "description": "A tiny React state management library using hooks.",
  "main": "lib/index.js",
  "module": "lib/index.es.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "prebuild": "npm run lint && npm run test && npm run clean",
    "build": "rollup -c",
    "test": "jest",
    "lint": "tslint \"src/**/*.ts?(x)\"",
    "clean": "rimraf lib/",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/houfio/dakpan.git"
  },
  "keywords": [
    "react",
    "context",
    "state",
    "hooks"
  ],
  "files": [
    "src/",
    "lib/"
  ],
  "author": "houfio",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/houfio/dakpan/issues"
  },
  "homepage": "https://dakpan.houf.io/",
  "peerDependencies": {
    "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^22.0.0",
    "@rollup/plugin-node-resolve": "^13.3.0",
    "@rollup/plugin-typescript": "^8.3.2",
    "@testing-library/react": "^13.3.0",
    "@types/jest": "^28.1.1",
    "@types/react": "^18.0.12",
    "jest": "^28.1.0",
    "jest-environment-jsdom": "^28.1.0",
    "react-dom": "^18.1.0",
    "rimraf": "^3.0.2",
    "rollup": "^2.75.5",
    "rollup-plugin-filesize": "^9.1.2",
    "ts-jest": "^28.0.4",
    "tslint": "^6.1.3",
    "tslint-react": "^5.0.0",
    "typescript": "^4.7.3"
  },
  "jest": {
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testMatch": [
      "<rootDir>/tests/**/?(*.)test.ts?(x)"
    ],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "testEnvironment": "jsdom"
  }
}
