-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.64 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "use-hash-param",
"version": "0.3.1",
"description": "React hook for handling parameters in URL fragment",
"type": "module",
"files": [
"dist"
],
"main": "./dist/use-hash-param.cjs",
"module": "./dist/use-hash-param.js",
"types": "./dist/use-hash-param.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/use-hash-param.d.ts",
"default": "./dist/use-hash-param.js"
},
"require": {
"types": "./dist/use-hash-param.d.cts",
"default": "./dist/use-hash-param.umd.cjs"
}
}
},
"scripts": {
"build": "vite build && publint",
"example": "cd example && npm run dev",
"lint": "eslint .",
"format": "prettier . --write",
"test": "vitest"
},
"keywords": [
"react",
"hook",
"url",
"hash",
"fragment"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hejmsdz/use-hash-param.git"
},
"homepage": "https://github.com/hejmsdz/use-hash-param",
"bugs": "https://github.com/hejmsdz/use-hash-param/issues",
"author": "Mikołaj Rozwadowski",
"license": "ISC",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@testing-library/react": "^11.2.5",
"@types/node": "^20.11.16",
"@types/react": "^18.2.52",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^9.8.0",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"publint": "^0.2.9",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"typescript-eslint": "^8.0.1",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.2",
"vitest": "^1.2.2"
}
}