@hyunjin/hooks
Version:
collection of useful hooks
65 lines • 1.78 kB
JSON
{
"name": "@hyunjin/hooks",
"private": false,
"sideEffects": false,
"version": "2.0.0",
"description": "collection of useful hooks",
"author": "hyunjin",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"keywords": [
"react",
"hooks"
],
"peerDependencies": {
"react": "^19.0.0"
},
"dependencies": {
"react": "19.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.3",
"@types/react": "19.0.3",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"clean-jsdoc-theme": "^4.2.9",
"eslint": "^8.46.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tree-shaking": "^1.10.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"js-doc": "^0.5.0",
"jsdoc": "^4.0.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.1",
"tsup": "8.3.5",
"typescript": "5.7.2"
},
"engines": {
"node": ">=16.15.0"
},
"scripts": {
"dev": "jest --watchAll",
"test": "jest",
"preinstall": "npx only-allow pnpm",
"lint": "eslint './src/**/*.{js,jsx,ts,tsx}'",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"watch": "tsup src/index.ts --format cjs,esm --dts --watch",
"build": "tsup src/index.ts --format cjs,esm --dts",
"clean": "rm -rf ./dist",
"release": "changeset publish"
}
}