forked from react-native-voice/voice
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.78 KB
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
57
58
59
{
"name": "@wdragon/react-native-voice",
"description": "React Native Native Voice library for iOS and Android, folk from @react-native-voice/voice",
"version": "3.3.11",
"author": "wdragon <wdragon521@gmail.com>",
"private": false,
"homepage": "https://github.com/wdragon/react-native-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": "16.8.6",
"@types/react-native": "0.61.17",
"eslint": "^6.8.0",
"lint-staged": "^7.2.0",
"react": "^17.0.1",
"react-native": "^0.64.4",
"semantic-release": "^17.0.4",
"typescript": "^5.1.3"
},
"keywords": [
"android",
"ios",
"react-native",
"speech",
"voice"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/wdragon/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 && yarn build:plugin",
"build": "tsc",
"dev-sync": "cp -r ./dist example/node_modules/@wdragon/react-native-voice",
"type-check": "tsc -noEmit",
"build:plugin": "tsc --build plugin",
"lint:plugin": "eslint plugin/src/*",
"clean:android": "cd android && ./gradlew clean && cd ../",
"preinstall": "npm install --package-lock-only --ignore-scripts && npx npm-force-resolutions"
},
"dependencies": {
"@expo/config-plugins": "^2.0.0",
"@types/node": "^8.0.0",
"invariant": "^2.2.4"
},
"resolutions": {
"@types/node": "8.0.0"
}
}