-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 954 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 954 Bytes
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
{
"name": "@kirz/nativewind-scale",
"version": "1.3.1",
"description": "Scaling utilities for Nativewind",
"author": "Kirill Zaidulin <zaidulinkirill@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zaikir/nativewind-scale"
},
"scripts": {
"build": "tsc",
"release": "npm run build && npm publish --access public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"preset",
"vars"
],
"keywords": [
"Nativewind",
"React Native"
],
"devDependencies": {
"@types/node": "^22.4.2",
"@types/react": "^18.3.4",
"nativewind": "^4.1.1",
"react": "^18.3.1",
"react-native-safe-area-context": "^4.14.0",
"tailwindcss": "^3.4.10",
"typescript": "^5.0.0"
},
"peerDependencies": {
"nativewind": ">4.1.0",
"react": "*",
"tailwindcss": ">3.3.0",
"react-native-safe-area-context": "*"
}
}