-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.22 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
48
49
50
51
52
53
54
55
{
"name": "use-ua-parser-js",
"version": "1.1.3",
"description": "React Hook for UAParser.js - Detect Browser, Engine, OS, CPU, and Device type/model from User-Agent data.",
"main": "dist/index.js",
"module": "dist/use-ua-parser-js.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsdx build"
},
"keywords": [
"user-agent",
"device",
"device-detector",
"browser-detector",
"parser",
"ua",
"react-hooks",
"react",
"ua-parser-js"
],
"repository": {
"url": "https://github.com/burnpiro/use-us-parser-js",
"type": "git"
},
"author": "Kemal Erdem",
"license": "MIT",
"devDependencies": {
"@types/react": "^17.0.26",
"@types/react-dom": "^17.0.9",
"@types/ua-parser-js": "^0.7.36",
"prettier": "^2.4.1",
"prettier-package-json": "^2.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tsdx": "^0.14.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"dependencies": {
"ua-parser-js": "^1.0.1"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120
}
}