-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
52 lines (52 loc) · 1.68 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
{
"name": "@daily-co/react-native-daily-js",
"private": true,
"//": "^ COMMENT OUT 'private: true' BEFORE RUNNING NPM PUBLISH",
"version": "0.71.0",
"description": "React Native library for making video calls using Daily",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"type-overrides",
"android",
"ios",
"react-native-daily-js.podspec",
"react-native.config.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"postbuild": "sed -E -i.bak 's|@daily-co/daily-js|../type-overrides/@daily-co/daily-js|g' ./dist/index.d.ts && rm ./dist/index.d.ts.bak",
"prepare": "npm run build",
"tag": "scripts/tag",
"prepublishOnly": "npm run tag"
},
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/daily-co/react-native-daily-js.git",
"baseUrl": "https://github.com/daily-co/react-native-daily-js"
},
"dependencies": {
"@daily-co/daily-js": "^0.74.0",
"@types/react-native-background-timer": "^2.0.0",
"base-64": "^1.0.0",
"react-native-url-polyfill": "^1.1.2"
},
"///": "WHEN ONE OF THESE CHANGE, PLEASE UPDATE README.md INSTALL SNIPPET ACCORDINGLY",
"peerDependencies": {
"@daily-co/react-native-webrtc": "^118.0.3-daily.2",
"@react-native-async-storage/async-storage": "^1.15.7",
"react-native-background-timer": "^2.3.1",
"react-native-get-random-values": "^1.9.0"
},
"devDependencies": {
"@daily-co/react-native-webrtc": "^118.0.3-daily.2",
"@react-native-async-storage/async-storage": "^1.15.7",
"@types/base-64": "^1.0.0",
"react-native-background-timer": "^2.3.1",
"typescript": "^4.8.4"
}
}