forked from MCanhisares/twilio-ios-capacitor
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "twilio-video-ios-capacitor",
"description": "This plugin is used to make video calls using Twilio video platform on iOS",
"version": "0.2.4",
"author": "agodin3z <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/agodin3z/twilio-video-ios-capacitor#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/agodin3z/twilio-video-ios-capacitor.git"
},
"bugs": {
"url": "https://github.com/agodin3z/twilio-video-ios-capacitor/issues"
},
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist",
"watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@capacitor/core": "^2.2.1"
},
"devDependencies": {
"typescript": "^3.4.3"
},
"files": [
"dist/",
"ios/",
"TwilioVideoIosCapacitor.podspec"
],
"keywords": [
"capacitor",
"plugin",
"native",
"ios"
],
"capacitor": {
"ios": {
"src": "ios"
}
}
}