This repository was archived by the owner on Jul 14, 2024. It is now read-only.
forked from react-native-voice/voice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.36 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.36 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
{
"name": "@pedrol2b/react-native-voice",
"description": "🎤 React Native Voice Recognition library for iOS and Android (Online and Offline Support)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "3.2.8",
"keywords": [
"android",
"ios",
"react-native",
"speech",
"voice"
],
"homepage": "https://github.com/pedrol2b/react-native-voice",
"scripts": {
"build": "tsc",
"build:plugin": "tsc --build plugin",
"prepare": "yarn build && yarn build:plugin",
"sync": "cp -r ./dist example/node_modules/@pedrol2b/react-native-voice",
"test": "jest --watchAll",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:typescript": "tsc --noEmit",
"test:ci": "jest --runInBand --passWithNoTests --coverage",
"lint": "eslint \"src/**/*\"",
"lint:fix": "eslint --fix \"src/**/*\"",
"pretty": "prettier --write \"./**/*.{js,jsx,ts,tsx,json}\""
},
"author": "Pedro Bueno <pedrolbb.e@gmail.com>",
"license": "MIT",
"dependencies": {
"@expo/config-plugins": "^7.9.1",
"invariant": "^2.2.4",
"jest": "^29.7.0"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@react-native-community/eslint-config": "^3.2.0",
"@react-native/babel-preset": "^0.75.0-main",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.5",
"@tsconfig/node10": "^1.0.11",
"@types/invariant": "^2.2.37",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/react": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^9.1.1",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.3.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-n": "^17.4.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-testing-library": "^6.2.2",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react": "18.3.1",
"react-native": "^0.74.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"private": false,
"repository": "https://github.com/pedrol2b/react-native-voice.git"
}