forked from jdmunro/react-native-spotlight-search
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "react-native-spotlight-search",
"version": "2.1.1",
"description": "A React Native module for iOS that provides Spotlight search functionality.",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"ios/*",
"react-native-spotlight-search.podspec",
"plugin/*",
"app.plugin.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "yarn build:plugin",
"build:plugin": "tsc --build plugin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdmunro/react-native-spotlight-search.git"
},
"author": "James Munro <me@jdmunro.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jdmunro/react-native-spotlight-search/issues"
},
"keywords": [
"react-native",
"react",
"ios",
"spotlight",
"search"
],
"homepage": "https://github.com/jdmunro/react-native-spotlight-search#readme",
"peerDependencies": {
"react-native": "*"
},
"dependencies": {
"@expo/config-plugins": "^4.0.6",
"@types/node": "^16.11.5",
"typescript": "^4.4.4"
}
}