-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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
{
"name": "expo-key-event",
"version": "1.0.4",
"description": "Provides an interface for reading key events such as from external bluetooth keyboards on Android, iOS and Web.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"open:ios": "xed example/ios",
"open:android": "open -a \"Android Studio\" example/android",
"release": "release-it"
},
"keywords": [
"react-native",
"expo",
"expo-key-event",
"ExpoKeyEvent",
"keyboard-event",
"key-event",
"hid-event"
],
"repository": "https://github.com/tlow92/expo-key-event",
"bugs": {
"url": "https://github.com/tlow92/expo-key-event/issues"
},
"author": "Thilo Reiner (https://github.com/tlow92)",
"license": "MIT",
"homepage": "https://github.com/tlow92/expo-key-event#readme",
"devDependencies": {
"@types/react": "~18.3.12",
"expo": "~52.0.0",
"expo-module-scripts": "^4.0.2",
"react-native": "0.76.0",
"release-it": "^17.11.0"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
},
"release-it": {
"$schema": "https://unpkg.com/release-it/schema/release-it.json",
"git": {
"commitMessage": "chore: release v${version}"
},
"npm": {
"publish": true
}
}
}