-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (30 loc) · 766 Bytes
/
package.json
File metadata and controls
31 lines (30 loc) · 766 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
{
"name": "react-hash-control",
"version": "1.0.3",
"description": "A collection of type-safe React hooks for handling URL hashes. This package provides several hooks to simplify working with URL hashes in React applications while ensuring type safety and reliability",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"hooks",
"url",
"hash"
],
"author": "Muhammad Haseeb",
"license": "MIT",
"dependencies": {
"react": "^18"
},
"devDependencies": {
"@types/react": "^18.2.55",
"typescript": "^5"
},
"repository": {
"type": "git",
"url": "https://github.com/haseeb5555/react-hash-control"
}
}