-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
162 lines (162 loc) · 4.76 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "@sendbird/calls-react-native",
"version": "1.1.5",
"description": "Sendbird Calls SDK for React Native: Empower React Native apps with seamless audio, video, and group calling. Build interactive communication easily.",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"sendbird-calls-react-native.podspec",
"!lib/typescript/sample",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"prepare": "yarn generate-version",
"docs": "typedoc src/index.ts --excludeInternal --excludePrivate --excludeProtected",
"test": "jest",
"test:build": "yarn build && yarn clean",
"test:tsc": "tsc --noEmit",
"typescript": "tsc --noEmit",
"build": "yarn generate-version && bob build",
"clean": "del lib",
"release": "release-it",
"release:local": "npx yalc publish",
"sample": "yarn --cwd sample",
"pods": "cd sample && pod-install --quiet",
"bootstrap": "yarn sample && yarn && yarn pods",
"lint": "yarn lint:eslint && yarn lint:prettier",
"fix": "yarn fix:eslint && yarn fix:prettier",
"lint:eslint": "eslint src sample --ext ts,tsx -c ./.eslintrc.js",
"lint:prettier": "prettier --check \"sample/**/*.{ts,tsx}\" \"src/**/*.{ts,tsx}\"",
"fix:eslint": "eslint --fix src sample --ext ts,tsx -c ./.eslintrc.js",
"fix:prettier": "prettier --write \"sample/**/*.{ts,tsx}\" \"src/**/*.{ts,tsx}\"",
"adb:reverse": "adb start-server && adb reverse tcp:8081 tcp:8081",
"build:sample:android": "yarn sample build:android",
"start:sample": "yarn sample start",
"icons": "node scripts/bundle-icons.js",
"generate-version": "node scripts/generate-version.js"
},
"keywords": [
"react-native",
"calls",
"audio-calls",
"video-calls",
"group-calls",
"voice-calls",
"conference-calls",
"communication",
"video-chat",
"real-time",
"webrtc",
"voip",
"call-kit",
"react-native-webrtc",
"react-native-callkeep",
"react-native-voip-push-notification"
],
"repository": "https://github.com/sendbird/sendbird-calls-sdk-react-native.git",
"author": "Sendbird <[email protected]> (https://sendbird.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sendbird/sendbird-calls-sdk-react-native.git/issues"
},
"homepage": "https://github.com/sendbird/sendbird-calls-sdk-react-native.git#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"@react-native-community/eslint-config": "^2.0.0",
"@release-it/conventional-changelog": "^2.0.0",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/jest": "^26.0.0",
"@types/react": "^18.0.12",
"@types/react-native": "^0.67.8",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"chalk": "4",
"commitlint": "^11.0.0",
"del-cli": "^4.0.1",
"eslint": "^7.2.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"metro-react-native-babel-preset": "^0.67.0",
"pod-install": "^0.1.0",
"prettier": "^2.6.2",
"react": "17.0.2",
"react-native": "0.68.2",
"react-native-builder-bob": "^0.18.2",
"release-it": "^14.2.2",
"typedoc": "^0.22.16",
"typescript": "4.6.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/sample/node_modules",
"<rootDir>/lib/"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
},
"hooks": {
"after:bump": "yarn build && yarn docs"
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"resolutions": {
"@types/react": "^18.2.47"
},
"packageManager": "[email protected]"
}