@thibault.sh/hooks
Version:
A comprehensive collection of React hooks for browser storage, UI interactions, and more
76 lines • 1.9 kB
JSON
{
"name": "@thibault.sh/hooks",
"version": "0.0.15",
"description": "A comprehensive collection of React hooks for browser storage, UI interactions, and more",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.mjs",
"require": "./dist/*.js"
}
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"react",
"hooks",
"localStorage",
"sessionStorage",
"cookies",
"browser-storage",
"ui-interactions",
"typescript"
],
"author": "ThibaultSH",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thibaultmthh/thibaultsh-hooks"
},
"bugs": {
"url": "https://github.com/thibaultmthh/thibaultsh-hooks/issues"
},
"homepage": "https://thibault.sh/hooks",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@swc/core": "^1.10.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.2.0",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.0.0"
},
"scripts": {
"build": "rm -rf ./dist && tsup",
"dev": "tsup --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.{ts,tsx}",
"typecheck": "tsc --noEmit"
}
}