-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.73 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.73 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "react-native-voice-ts",
"description": "Advanced Speech-to-Text library for React Native with TypeScript support. Features ready-to-use components (VoiceMicrophone), custom hooks (useVoiceRecognition), real-time transcription, multi-language support, and comprehensive voice recognition capabilities for iOS and Android.",
"version": "1.0.7",
"author": "Noor Mohammad <noor.jsdivs@gmail.com>",
"private": false,
"homepage": "https://github.com/noorjsdivs/react-native-voice-ts",
"devDependencies": {
"@react-native-community/eslint-config": "^3.2.0",
"@semantic-release/git": "^10.0.1",
"@types/invariant": "^2.2.37",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"eslint": "9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-native": "^5.0.0",
"expo-module-scripts": "^5.0.8",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"react": "^19.2.1",
"react-native": "^0.83.0",
"react-native-svg": "^15.15.1",
"semantic-release": "^23.0.0",
"typescript": "5.9.3"
},
"keywords": [
"react-native",
"voice",
"speech",
"speech-to-text",
"voice-recognition",
"speech-recognition",
"stt",
"android",
"ios",
"typescript",
"microphone",
"audio",
"transcription"
],
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist",
"android",
"ios",
"plugin/build",
"app.plugin.js",
"react-native-voice-ts.podspec",
"README.md",
"LICENSE"
],
"peerDependencies": {
"expo": ">=48.0.0",
"react": ">=18.0.0",
"react-native": ">=0.71.0",
"react-native-svg": ">=13.0.0"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
},
"react-native-svg": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/noorjsdivs/react-native-voice-ts.git"
},
"bugs": {
"url": "https://github.com/noorjsdivs/react-native-voice-ts/issues"
},
"scripts": {
"lint": "eslint \"src/**/*.{ts,tsx}\" --fix",
"lint:check": "eslint \"src/**/*.{ts,tsx}\"",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json}\"",
"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",
"build:watch": "tsc --watch",
"dev-sync": "cp -r ./dist example/node_modules/react-native-voice-ts",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"build:plugin": "tsc --build plugin",
"lint:plugin": "eslint plugin/src/* --fix",
"clean": "rm -rf dist && rm -rf plugin/build",
"prepack": "yarn clean && yarn build && yarn build:plugin",
"test": "echo \"No tests in library root. Run 'yarn --cwd example test' to test the example app.\"",
"validate": "yarn type-check && yarn lint:check && yarn format:check",
"test:installation": "bash scripts/test-installation.sh",
"test:compatibility": "bash scripts/test-compatibility.sh",
"validate:package": "bash scripts/validate-package.sh"
},
"dependencies": {
"invariant": "^2.2.4"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"codegenConfig": {
"name": "RNVoiceSpec",
"type": "all",
"jsSrcsDir": "src",
"outputDir": {
"ios": "ios/generated",
"android": "android/generated"
},
"android": {
"javaPackageName": "com.wenkesj.voice"
}
}
}