-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.42 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
{
"name": "@pisacode-voice/voice",
"description": "Voice library",
"version": "1.0.5",
"author": "Pisacode <can@patika.dev>",
"private": false,
"homepage": "https://github.com/pisacode/voice",
"devDependencies": {
"@react-native-community/eslint-config": "^3.2.0",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node10": "^1.0.9",
"@types/invariant": "^2.2.35",
"@types/react-native": "^0.70.5",
"eslint": "^8.37.0",
"lint-staged": "^13.2.0",
"react": "18.2.0",
"react-native": "0.71.4",
"semantic-release": "^21.0.1",
"typescript": "5.0.3"
},
"keywords": [
"voice"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"peerDependencies": {
"react-native": "0.71.4"
},
"repository": {
"type": "git",
"url": "git@github.com:pisacode/voice.git"
},
"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 --project tsconfig.json --noEmit",
"build:plugin": "tsc --build plugin",
"lint:plugin": "eslint plugin/src/*"
},
"dependencies": {
"@expo/config-plugins": "^6.0.1",
"invariant": "^2.2.4"
}
}