usehooks-ts
Version:
React hook library, ready to use, written in Typescript.
52 lines (51 loc) • 1.37 kB
JSON
{
"name": "usehooks-ts",
"private": false,
"description": "React hook library, ready to use, written in Typescript.",
"version": "2.2.1",
"author": "Julien CARON <juliencaron@protonmail.com>",
"homepage": "https://usehooks-ts.com",
"keywords": [
"typescript",
"react",
"react-hooks",
"npm"
],
"license": "MIT",
"main": "dist/index.js",
"module": "esm/index.js",
"files": [
"dist/",
"esm/"
],
"types": "dist/index.d.ts",
"typing": "dist/index.d.ts",
"scripts": {
"prebuild": "npm run clean",
"start": "chokidar \"src/**/*.ts\" -c \"npm run build\"",
"build": "npm run build:cjs && npm run build:es",
"build:cjs": "tsc -p tsconfig.build.json",
"build:es": "npm run build:cjs -- -m esNext --outDir esm",
"clean": "rimraf -rf ./dist ./esm",
"types-check": "tsc -p tsconfig.json"
},
"devDependencies": {
"@testing-library/react-hooks": "^7.0.2",
"chokidar-cli": "^3.0.0",
"react": ">=16.8.0",
"react-test-renderer": ">=16.8.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/juliencrn/usehooks-ts"
},
"bugs": {
"url": "https://github.com/juliencrn/usehooks-ts/issues"
},
"gitHead": "7c20fdd05fcaf273ce04d2a99d7db965231bc2a8"
}