-
Notifications
You must be signed in to change notification settings - Fork 524
/
Copy pathpackage.json
75 lines (75 loc) · 1.88 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"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": "^3.2.0",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node10": "^1.0.11",
"@types/invariant": "^2.2.37",
"eslint": "9.20.1",
"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": {
"react": "*",
"react-native": "*"
},
"repository": {
"type": "git",
"url": "git://github.com/react-native-voice/voice.git"
},
"files": [
"src",
"dist",
"android",
"ios",
"react-native-voice.podspec"
],
"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": {
"@expo/config-plugins": "^9.0.9",
"invariant": "^2.2.4"
},
"codegenConfig": {
"name": "RNVoiceSpec",
"type": "all",
"jsSrcsDir": "src",
"outputDir": {
"ios": "ios/generated",
"android": "android/generated"
},
"android": {
"javaPackageName": "com.wenkesj.voice"
}
}
}