-
Notifications
You must be signed in to change notification settings - Fork 495
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "@react-native-voice/voice",
"description": "React Native Native Voice library for iOS and Android",
"version": "3.2.4",
"author": "Sam Wenke <[email protected]>",
"private": false,
"homepage": "https://github.com/react-native-voice/voice",
"devDependencies": {
"@react-native-community/eslint-config": "^0.0.7",
"@semantic-release/git": "^9.0.0",
"@tsconfig/node10": "^1.0.7",
"@types/invariant": "^2.2.31",
"@types/react-native": "0.61.17",
"eslint": "^6.8.0",
"lint-staged": "^7.2.0",
"react": "16.4.2",
"react-native": "^0.56.0",
"semantic-release": "^17.0.4",
"typescript": "3.8.3"
},
"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/react-native-voice/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 && yarn build:plugin",
"build": "tsc",
"dev-sync": "cp -r ./dist example/node_modules/@react-native-voice/voice",
"type-check": "tsc -noEmit",
"build:plugin": "tsc --build plugin",
"lint:plugin": "eslint plugin/src/*"
},
"dependencies": {
"invariant": "^2.2.4",
"@expo/config-plugins": "^2.0.0"
}
}