mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
# [3.1.0](https://github.com/streamich/react-use/compare/v3.0.0...v3.1.0) (2018-10-29) ### Features * 🎸 add useGetSetState ([dcd1013](https://github.com/streamich/react-use/commit/dcd1013)) ### Performance Improvements * ⚡️ wrape useGetSetState callbacks in useCallback ([3c1e57d](https://github.com/streamich/react-use/commit/3c1e57d))
78 lines
1.9 KiB
JSON
78 lines
1.9 KiB
JSON
{
|
|
"name": "react-use",
|
|
"version": "3.1.0",
|
|
"description": "Collection of React Hooks",
|
|
"main": "lib/index.js",
|
|
"files": [
|
|
"lib/"
|
|
],
|
|
"types": "lib/index.d.ts",
|
|
"typings": "lib/index.d.ts",
|
|
"scripts": {
|
|
"start": "yarn storybook",
|
|
"test": "echo hmm...",
|
|
"build": "tsc",
|
|
"clean": "rimraf lib storybook-static",
|
|
"storybook": "start-storybook -p 6008",
|
|
"storybook:build": "build-storybook",
|
|
"storybook:upload": "gh-pages -d storybook-static",
|
|
"storybook:clean": "rimraf storybook-static",
|
|
"release": "semantic-release"
|
|
},
|
|
"author": "@streamich",
|
|
"license": "Unlicense",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/streamich/react-use"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/streamich/react-use/issues"
|
|
},
|
|
"homepage": "https://github.com/streamich/react-use#readme",
|
|
"dependencies": {
|
|
"@types/react": "^16.4.18",
|
|
"@types/react-dom": "^16.0.9",
|
|
"throttle-debounce": "^2.0.1",
|
|
"nano-css": "^3.4.0",
|
|
"rebound": "^0.1.0",
|
|
"ts-easing": "^0.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@storybook/react": "^3.4.11",
|
|
"react": "16.7.0-alpha.0",
|
|
"react-dom": "16.7.0-alpha.0",
|
|
"typescript": "^3.1.3",
|
|
"ts-node": "^7.0.1",
|
|
"ts-loader": "3",
|
|
"babel-core": "^6.26.3",
|
|
"rimraf": "^2.6.2",
|
|
"gh-pages": "^2.0.1",
|
|
"semantic-release": "^15.10.6",
|
|
"@semantic-release/changelog": "^3.0.1",
|
|
"@semantic-release/npm": "^5.0.5",
|
|
"@semantic-release/git": "^7.0.5",
|
|
"rxjs": "^6.3.3"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "16.7.0-alpha.0",
|
|
"react-dom": "16.7.0-alpha.0"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "git-cz"
|
|
}
|
|
},
|
|
"release": {
|
|
"verifyConditions": [
|
|
"@semantic-release/changelog",
|
|
"@semantic-release/npm",
|
|
"@semantic-release/git"
|
|
],
|
|
"prepare": [
|
|
"@semantic-release/changelog",
|
|
"@semantic-release/npm",
|
|
"@semantic-release/git"
|
|
]
|
|
}
|
|
}
|