-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.19 KB
/
package.json
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
{
"name": "@prmichaelsen/react-ux-hooks",
"version": "0.0.0",
"description": "Hooks to measure DOM rects during resize, track viewport size, & disable iOS Safari auto-input zoom.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"x-test": "jest",
"build": "tsc",
"prepare": "npm run build",
"x-prepublishOnly": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prmichaelsen/react-ux-hooks.git"
},
"keywords": [
"window",
"resize",
"dom",
"viewport",
"dimensions"
],
"author": {
"name": "Patrick Michaelsen",
"email": "patrickazusa@gmail.com",
"url": "https://github.com/prmichaelsen"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/prmichaelsen/react-ux-hooks/issues"
},
"homepage": "https://github.com/prmichaelsen/react-ux-hooks#readme",
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^10.17.60",
"@types/prettier": "^1.15.1",
"@types/react": "^18.2.22",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"react": "^18.2.0"
}
}