This repository was archived by the owner on Jan 31, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 611
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.17 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.17 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
{
"name": "@react-native-voice/voice",
"description": "React Native Native Voice library for iOS and Android",
"version": "4.0.1",
"author": "Sam Wenke <samwenke@gmail.com>",
"private": false,
"homepage": "https://github.com/react-native-voice/voice",
"devDependencies": {
"@react-native-community/eslint-config": "^3.2.0",
"@semantic-release/git": "^10.0.1",
"@types/invariant": "^2.2.37",
"eslint": "9.20.1",
"expo-module-scripts": "^4.0.5",
"lint-staged": "^15.2.10",
"react": "18.3.1",
"react-native": "^0.76.2",
"semantic-release": "^24.2.0",
"typescript": "5.6.3"
},
"keywords": [
"android",
"ios",
"react-native",
"speech",
"voice"
],
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"peerDependencies": {
"expo": ">=48.0.0",
"react-native": ">=0.71.0"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git://github.com/react-native-voice/voice.git"
},
"files": [
"src",
"dist",
"android",
"ios",
"react-native-voice.podspec",
"app.plugin.js",
"plugin"
],
"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"
},
"engines": {
"node": ">=22"
},
"codegenConfig": {
"name": "RNVoiceSpec",
"type": "all",
"jsSrcsDir": "src",
"outputDir": {
"ios": "ios/generated",
"android": "android/generated"
},
"android": {
"javaPackageName": "com.wenkesj.voice"
}
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}