-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.56 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.56 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
{
"name": "@fluidinference/react-native-fluidaudio",
"version": "0.1.0",
"description": "React Native wrapper for FluidAudio - ASR, VAD, Diarization, and TTS",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "lib/module/index",
"source": "src/index",
"files": [
"src",
"lib",
"ios",
"cpp",
"react-native-fluidaudio.podspec",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"codegenConfig": {
"name": "FluidAudioSpec",
"type": "modules",
"jsSrcsDir": "src",
"ios": {
"modulesConformingToProtocol": {
"RCTEventEmitter": ["FluidAudio"]
}
}
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"prepare": "bob build",
"release": "release-it",
"build:ios": "cd ios && xcodebuild -scheme FluidAudioModule -destination 'generic/platform=iOS' build",
"validate": "npm run typescript && npm run test",
"example": "npm run --prefix example start",
"example:ios": "npm run --prefix example ios",
"example:install": "cd example && npm install && cd ios && pod install"
},
"keywords": [
"react-native",
"ios",
"asr",
"speech-to-text",
"transcription",
"vad",
"voice-activity-detection",
"diarization",
"speaker-recognition",
"tts",
"text-to-speech",
"fluidaudio"
],
"repository": {
"type": "git",
"url": "https://github.com/FluidInference/react-native-fluidaudio.git"
},
"author": "FluidInference",
"license": "MIT",
"bugs": {
"url": "https://github.com/FluidInference/react-native-fluidaudio/issues"
},
"homepage": "https://github.com/FluidInference/react-native-fluidaudio#readme",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.24.0",
"@types/jest": "^29.5.0",
"@types/react": "^18.2.0",
"@types/react-native": "^0.73.0",
"jest": "^29.7.0",
"react": "18.2.0",
"react-native": "0.73.0",
"react-native-builder-bob": "^0.23.0",
"ts-jest": "^29.1.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.71.0"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}