react-native-seel-widget 0.1.3 → 0.1.4
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.
- package/package.json +88 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-seel-widget",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "React-Native SeelWidget",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -52,6 +52,93 @@
|
|
|
52
52
|
"url": "https://github.com/seelinc/react-native-seel-widget/issues"
|
|
53
53
|
},
|
|
54
54
|
"license": "ISC",
|
|
55
|
+
"publishConfig": {
|
|
56
|
+
"registry": "https://registry.npmjs.org/"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
60
|
+
"@eslint/compat": "^1.3.2",
|
|
61
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
62
|
+
"@eslint/js": "^9.35.0",
|
|
63
|
+
"@react-native/babel-preset": "0.83.0",
|
|
64
|
+
"@react-native/eslint-config": "0.83.0",
|
|
65
|
+
"@release-it/conventional-changelog": "^10.0.1",
|
|
66
|
+
"@types/jest": "^29.5.14",
|
|
67
|
+
"@types/react": "^19.1.12",
|
|
68
|
+
"commitlint": "^19.8.1",
|
|
69
|
+
"del-cli": "^6.0.0",
|
|
70
|
+
"eslint": "^9.35.0",
|
|
71
|
+
"eslint-config-prettier": "^10.1.8",
|
|
72
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
73
|
+
"jest": "^29.7.0",
|
|
74
|
+
"lefthook": "^2.0.3",
|
|
75
|
+
"prettier": "^2.8.8",
|
|
76
|
+
"react": "19.1.0",
|
|
77
|
+
"react-native": "0.81.5",
|
|
78
|
+
"react-native-builder-bob": "^0.40.17",
|
|
79
|
+
"release-it": "^19.0.4",
|
|
80
|
+
"typescript": "^5.9.2"
|
|
81
|
+
},
|
|
82
|
+
"peerDependencies": {
|
|
83
|
+
"react": "*",
|
|
84
|
+
"react-native": "*"
|
|
85
|
+
},
|
|
86
|
+
"workspaces": [
|
|
87
|
+
"example"
|
|
88
|
+
],
|
|
89
|
+
"packageManager": "yarn@4.11.0",
|
|
90
|
+
"prettier": {
|
|
91
|
+
"quoteProps": "consistent",
|
|
92
|
+
"singleQuote": true,
|
|
93
|
+
"tabWidth": 2,
|
|
94
|
+
"trailingComma": "es5",
|
|
95
|
+
"useTabs": false
|
|
96
|
+
},
|
|
97
|
+
"jest": {
|
|
98
|
+
"preset": "react-native",
|
|
99
|
+
"modulePathIgnorePatterns": [
|
|
100
|
+
"<rootDir>/example/node_modules",
|
|
101
|
+
"<rootDir>/lib/"
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
"commitlint": {
|
|
105
|
+
"extends": [
|
|
106
|
+
"@commitlint/config-conventional"
|
|
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": {
|
|
123
|
+
"name": "angular"
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"create-react-native-library": {
|
|
129
|
+
"type": "library",
|
|
130
|
+
"languages": "js",
|
|
131
|
+
"tools": [
|
|
132
|
+
"eslint",
|
|
133
|
+
"jest",
|
|
134
|
+
"lefthook",
|
|
135
|
+
"release-it"
|
|
136
|
+
],
|
|
137
|
+
"version": "0.56.0"
|
|
138
|
+
},
|
|
139
|
+
"dependencies": {
|
|
140
|
+
"@react-native-async-storage/async-storage": "^2.2.0"
|
|
141
|
+
},
|
|
55
142
|
"author": "qingming.zhang",
|
|
56
143
|
"main": "./src/index.tsx",
|
|
57
144
|
"directories": {
|