-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 978 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "react-use-more",
"version": "1.0.0",
"author": "Jadeon Sheppard",
"license": "MIT",
"description": "A set of supplementary React hooks",
"homepage": "https://github.com/jadshep/react-use-more",
"repository": {
"type": "git",
"url": "https://github.com/jadshep/react-use-more.git"
},
"main": "dist/index.js",
"files": [
"dist/"
],
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint .",
"build": "rimraf dist && tsc",
"prepack": "npm run build"
},
"keywords": [
"react",
"hooks"
],
"devDependencies": {
"@types/react": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^9.10.0",
"eslint-plugin-react": "^7.36.1",
"rimraf": "^6.0.1",
"typescript": "^5.5.2"
},
"peerDependencies": {
"react": "*"
}
}