This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
forked from react-native-voice/voice
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "@jamsch/react-native-voice",
"description": "React Native Native Voice library for iOS and Android",
"version": "3.1.7",
"author": "Sam Wenke <samwenke@gmail.com>",
"private": false,
"homepage": "https://github.com/jamsch/react-native-voice",
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@semantic-release/git": "^9.0.0",
"@types/invariant": "^2.2.34",
"@types/react-native": "0.61.17",
"eslint": "^7.20.0",
"lint-staged": "^10.5.4",
"react": "17.0.1",
"react-native": "^0.63.4",
"semantic-release": "^17.3.9",
"typescript": "~4.1.5"
},
"keywords": [
"android",
"ios",
"react-native",
"speech",
"voice"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"peerDependencies": {
"react-native": ">= 0.60.2"
},
"repository": {
"type": "git",
"url": "git://github.com/jamsch/react-native-voice.git"
},
"scripts": {
"lint": "eslint src/*",
"semantic-release": "semantic-release",
"start": "yarn --cwd example start",
"ios": "yarn --cwd example ios",
"android": "yarn --cwd example android",
"prepare": "yarn build",
"build": "tsc",
"type-check": "tsc -noEmit",
"dev-sync": "cp -r ./dist example/node_modules/@jamsch/react-native-voice"
},
"dependencies": {
"invariant": "^2.2.4"
}
}