Files
sgauthier 6e64e138e2
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
planning
2024-10-14 09:15:30 +02:00

48 lines
1.3 KiB
JSON

{
"name": "use-composed-ref",
"version": "1.3.0",
"description": "React hook which creates a ref function from given refs. Useful when using forwardRef.",
"main": "./dist/use-composed-ref.cjs.js",
"module": "./dist/use-composed-ref.esm.js",
"types": "./types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"test": "echo \"Warning: no test specified\" || jest --env=node",
"prebuild": "rimraf dist types",
"build": "rollup -c && tsc",
"preversion": "npm test",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andarist/use-composed-ref.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Andarist/use-composed-ref/issues"
},
"homepage": "https://github.com/Andarist/use-composed-ref#readme",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-typescript": "^7.3.3",
"@types/react": "^16.8.8",
"husky": "^1.3.1",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"react": "^16.8.4",
"rimraf": "^2.6.3",
"rollup": "^1.6.0",
"rollup-plugin-babel": "^4.3.2",
"typescript": "^4.5.4"
}
}