-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
146 lines (146 loc) · 4.33 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "react-native-autocomplete-dropdown",
"version": "4.0.0",
"description": "Dropdown Item picker with search and autocomplete (typeahead) functionality for react native",
"keywords": [
"react-native",
"dropdown",
"autocomplete",
"picker",
"typeahead",
"select",
"react native typeahead",
"react native autocomplete",
"react native dropdown",
"react native picker",
"react native select"
],
"homepage": "https://github.com/onmotion/react-native-autocomplete-dropdown",
"bugs": {
"url": "https://github.com/onmotion/react-native-autocomplete-dropdown/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/onmotion/react-native-autocomplete-dropdown.git"
},
"license": "MIT",
"author": "Alexandr Kozhevnikov <[email protected]>",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"source": "src/index",
"react-native": "src/index",
"types": "lib/typescript/src/index.d.ts",
"files": [
"lib",
"src"
],
"workspaces": [
"example"
],
"scripts": {
"build": "bob build",
"clean": "del-cli lib",
"example": "yarn workspace react-native-awesome-library-example",
"lint": "eslint .",
"prepare": "bob build",
"release": "release-it",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc --noEmit",
"typecheck": "tsc --noEmit"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"resolutions": {
"@types/react": "^18.2.44"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"react-native-animatable": "^1.4.0",
"react-native-feather": "^1.1.2",
"react-native-size-matters": "^0.4.2"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/eslint-parser": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.5",
"@babel/runtime": "^7.24.5",
"@commitlint/config-conventional": "^17.0.2",
"@evilmartians/lefthook": "^1.5.0",
"@react-native/babel-preset": "0.75.4",
"@react-native/eslint-config": "0.75.4",
"@react-native/metro-config": "0.75.4",
"@react-native/typescript-config": "0.75.4",
"@release-it/conventional-changelog": "^5.0.0",
"@types/jest": "^29.5.12",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"commitlint": "^17.0.2",
"del-cli": "^5.1.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^4.1.3",
"jest": "^29.6.3",
"prettier": "^3.0.0",
"react": "18.3.1",
"react-native": "0.75.4",
"react-native-builder-bob": "^0.30.2",
"react-native-svg": "^15.1.0",
"react-test-renderer": "18.3.1",
"release-it": "^15.0.0",
"typescript": "5.1.6"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.60.0",
"react-native-svg": ">=13.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"exclude": "example/**",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"release-it": {
"git": {
"commitMessage": "Release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
}
}