-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.11 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "react-native-alam",
"version": "0.3.5",
"description": "A tailwind-like solution for react native",
"main": "src/index",
"module": "src/index",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"android",
"ios",
"cpp",
"*.podspec",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"test": "tsc --noEmit && prettier --check src docs.mjs ATTR.md",
"clean": "del-cli lib",
"release": "release-it",
"format": "prettier --write src docs.mjs ATTR.md",
"docs": "node docs.mjs"
},
"keywords": [
"react-native",
"ios",
"android",
"tailwind",
"tailwindcss",
"styling"
],
"repository": "https://github.com/s-fabian/react-native-alam",
"author": "Fabian <spiele2014fs@gmail.com> (https://github.com/HeroClay)",
"license": "MIT",
"bugs": {
"url": "https://github.com/s-fabian/react-native-alam/issues"
},
"homepage": "https://github.com/s-fabian/react-native-alam#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@release-it/conventional-changelog": "^5.0.0",
"@types/react": "~17.0.21",
"@types/react-native": "0.70.0",
"colord": "^2.9.3",
"commitlint": "^17.0.2",
"del-cli": "^5.0.0",
"prettier": "^3.2.5",
"react": "18.2.0",
"react-native": "0.72.6",
"release-it": "^15.0.0",
"typescript": "^5.3.3"
},
"resolutions": {
"@types/react": "17.0.21"
},
"peerDependencies": {
"colord": "*",
"react": "*",
"react-native": "*"
},
"engines": {
"node": ">= 18.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
}
}
}