diff --git a/package.json b/package.json index ffd1675..3999c42 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,17 @@ { "name": "hooks-by-ruvkr", "version": "0.1.0", - "private": true, + "private": false, + "description": "Custom react hooks I have created while working on my projects...", + "repository": { + "type": "git", + "url": "https://github.com/ruvkr/hooks-by-ruvkr.git" + }, + "homepage": "https://github.com/ruvkr/hooks-by-ruvkr.git", + "main": "src/hooks", + "files": [ + "src/hooks/*" + ], "dependencies": { "@testing-library/jest-dom": "^4.2.4", "@testing-library/react": "^9.3.2", @@ -37,11 +47,6 @@ "hooks by ruvkr", "ruvkr" ], - "repository": { - "type": "git", - "url": "https://github.com/ruvkr/hooks-by-ruvkr.git" - }, - "description": "Custom react hooks I have created while working on my projects...", "devDependencies": { "framer-motion": "^2.6.13", "polished": "^3.6.6", diff --git a/src/hooks/index.js b/src/hooks/index.js new file mode 100644 index 0000000..b1e1f52 --- /dev/null +++ b/src/hooks/index.js @@ -0,0 +1,2 @@ +export const test = 'test'; +export default test; \ No newline at end of file