hooks-me
Version:
<div align="center"> <h1>hooks-me</h1> <div>React useful hooks.</div>
54 lines (53 loc) • 1.25 kB
JSON
{
"name": "hooks-me",
"version": "0.0.4",
"description": "",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"scripts": {
"test": "jest",
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs"
},
"keywords": [
"react",
"hook",
"typescript",
"react hooks"
],
"author": "Anthony DI STEFANO",
"homepage": "https://github.com/MADEiN83/hooks-me",
"bugs": {
"url": "https://github.com/MADEiN83/hooks-me/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MADEiN83/hooks-me.git"
},
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.2.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.8.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"jest": {
"testEnvironment": "jsdom"
},
"files": [
"lib"
]
}