-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"name": "@uh-ro/dimensions",
"version": "0.0.1",
"description": "@uh-ro/dimensions is a utility package that streamlines the process of creating responsive designs in React Native applications. It is inspired by viewport units - (`vh` and `vw`) in CSS, and simplifies the process of scaling dimensions and fonts based on a base dimension.",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uh-ro/dimensions.git"
},
"keywords": [
"react-native",
"adaptive-layout",
"viewport-units",
"responsive-ui",
"ios-android",
"scaled-text",
"font-size-scaling",
"window-screen-dimensions",
"dynamic-height-width",
"dimension-methods"
],
"author": "ifeanyi ugwu",
"license": "MIT",
"bugs": {
"url": "https://github.com/uh-ro/dimensions/issues"
},
"homepage": "https://github.com/uh-ro/dimensions#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.59.0"
},
"devDependencies": {
"@types/react": "^16.8.0",
"@types/react-native": "^0.57.65",
"typescript": "^5.4.5"
}
}