-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
53 lines (53 loc) · 1.49 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
{
"name": "expo-speech-recognition",
"version": "1.1.0",
"description": "Speech Recognition for React Native Expo projects",
"main": "build/index.js",
"types": "build/index.d.ts",
"publishConfig": {
"access": "public"
},
"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": "open -a \"Xcode\" example/ios",
"open:android": "open -a \"Android Studio\" example/android",
"release": "npm run prepare && changeset publish",
"ts:check": "tsc -p . --noEmit"
},
"keywords": [
"react-native",
"expo",
"expo-speech-recognition",
"ExpoSpeechRecognition",
"webkitSpeechRecognition",
"SpeechRecognition"
],
"repository": "https://github.com/jamsch/expo-speech-recognition",
"bugs": {
"url": "https://github.com/jamsch/expo-speech-recognition/issues"
},
"author": "jamsch (https://github.com/jamsch)",
"license": "MIT",
"homepage": "https://github.com/jamsch/expo-speech-recognition#readme",
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@types/dom-speech-recognition": "^0.0.4",
"@types/react": "^18.3.12",
"expo": "~52.0.0",
"expo-module-scripts": "^4.0.2"
},
"prettier": {
"trailingComma": "all"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}