@identomat-inc/react-native-identomat 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +82 -3
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@identomat-inc/react-native-identomat",
3
- "version": "1.1.2",
4
- "description": "identomat bridge module",
3
+ "version": "1.1.3",
4
+ "description": "identomat",
5
5
  "source": "./src/index.tsx",
6
6
  "main": "./src/index.tsx",
7
7
  "module": "./src/index.tsx",
@@ -54,7 +54,7 @@
54
54
  "url": "https://gitlab.identomat.com/world/identomat-example-app-android"
55
55
  },
56
56
  "author": "Giorgi",
57
- "license": "ISC",
57
+ "license": "MIT",
58
58
  "bugs": {
59
59
  "url": "https://gitlab.identomat.com/mobile/identomat-android-sdk-v2/issues"
60
60
  },
@@ -78,6 +78,7 @@
78
78
  "prettier": "^3.0.3",
79
79
  "react": "18.3.1",
80
80
  "react-native": "0.76.1",
81
+ "react-native-builder-bob": "^0.31.0",
81
82
  "release-it": "^17.10.0",
82
83
  "turbo": "^1.10.7",
83
84
  "typescript": "^5.2.2"
@@ -104,6 +105,84 @@
104
105
  "extends": [
105
106
  "@commitlint/config-conventional"
106
107
  ]
108
+ },
109
+ "release-it": {
110
+ "git": {
111
+ "commitMessage": "chore: release ${version}",
112
+ "tagName": "v${version}"
113
+ },
114
+ "npm": {
115
+ "publish": true
116
+ },
117
+ "github": {
118
+ "release": true
119
+ },
120
+ "plugins": {
121
+ "@release-it/conventional-changelog": {
122
+ "preset": "angular"
123
+ }
124
+ }
125
+ },
126
+ "eslintConfig": {
127
+ "root": true,
128
+ "extends": [
129
+ "@react-native",
130
+ "prettier"
131
+ ],
132
+ "rules": {
133
+ "react/react-in-jsx-scope": "off",
134
+ "prettier/prettier": [
135
+ "error",
136
+ {
137
+ "quoteProps": "consistent",
138
+ "singleQuote": true,
139
+ "tabWidth": 2,
140
+ "trailingComma": "es5",
141
+ "useTabs": false
142
+ }
143
+ ]
144
+ }
145
+ },
146
+ "eslintIgnore": [
147
+ "node_modules/",
148
+ "lib/"
149
+ ],
150
+ "prettier": {
151
+ "quoteProps": "consistent",
152
+ "singleQuote": true,
153
+ "tabWidth": 2,
154
+ "trailingComma": "es5",
155
+ "useTabs": false
156
+ },
157
+ "react-native-builder-bob": {
158
+ "source": "src",
159
+ "output": "lib",
160
+ "targets": [
161
+ [
162
+ "commonjs",
163
+ {
164
+ "esm": true
165
+ }
166
+ ],
167
+ [
168
+ "module",
169
+ {
170
+ "esm": true
171
+ }
172
+ ],
173
+ [
174
+ "typescript",
175
+ {
176
+ "project": "tsconfig.build.json",
177
+ "esm": true
178
+ }
179
+ ]
180
+ ]
181
+ },
182
+ "create-react-native-library": {
183
+ "type": "module-legacy",
184
+ "languages": "kotlin-swift",
185
+ "version": "0.43.0"
107
186
  }
108
187
  }
109
188