-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.12 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": "rxn-units",
"version": "0.1.7",
"description": "📐 Cross-Platform Viewport Units (vw, vh, vmin, vmax, percentage) + useUnits hook for React Native, React Native Web and Expo.",
"keywords": [
"react",
"typescript",
"react-native",
"units",
"react-native-web",
"expo",
"rxn",
"viewport",
"viewport-units"
],
"homepage": "https://github.com/Luffos/rxn-units#readme",
"bugs": {
"url": "https://github.com/Luffos/rxn-units/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Luffos/rxn-units.git"
},
"license": "MIT",
"author": "Luffos",
"main": "dist/index.js",
"source": "src/index",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf ./dist && tsc --build",
"build-watch": "watch \"npm run build\" ./src --interval 1 --wait 0.1",
"prepack": "npm run build"
},
"devDependencies": {
"@types/react-native": "^0.70.6",
"rimraf": "^3.0.2",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "^0.70.5"
}
}