forked from adminy/cordova-plugin-ffmpeg
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.98 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.98 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "cordova-plugin-ffmpeg-demo",
"version": "0.0.1",
"author": "Maxim Belov",
"homepage": "https://github.com/MaximBelov/cordova-plugin-ffmpeg-example",
"scripts": {
"postinstall": "patch-package",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:android": "ionic cordova build android",
"add:ios": "ionic cordova platform add ios",
"build:ios": "ionic cordova build ios --debug --verbose",
"run:ios": "ionic cordova run ios --livereload --external --verbose",
"run:ios:device": "ionic cordova run ios --device",
"run:android": "ionic cordova run android --livereload --verbose"
},
"private": true,
"dependencies": {
"@angular/common": "18.2.11",
"@angular/core": "18.2.11",
"@angular/forms": "18.2.11",
"@angular/platform-browser": "18.2.11",
"@angular/platform-browser-dynamic": "18.2.11",
"@angular/router": "18.2.11",
"@awesome-cordova-plugins/advanced-image-picker": "^6.11.0",
"@awesome-cordova-plugins/camera": "6.11.0",
"@awesome-cordova-plugins/chooser": "6.11.0",
"@awesome-cordova-plugins/core": "6.11.0",
"@awesome-cordova-plugins/ffmpeg": "6.11.0",
"@awesome-cordova-plugins/file": "6.11.0",
"@awesome-cordova-plugins/ionic-webview": "6.11.0",
"@awesome-cordova-plugins/splash-screen": "6.11.0",
"@awesome-cordova-plugins/status-bar": "6.11.0",
"@ionic/angular": "8.4.0",
"core-js": "3.39.0",
"rxjs": "7.8.1",
"tslib": "2.8.1",
"zone.js": "0.14.10"
},
"devDependencies": {
"@angular-devkit/architect": "0.1802.12",
"@angular-devkit/build-angular": "18.2.11",
"@angular-devkit/core": "18.2.11",
"@angular-devkit/schematics": "18.2.11",
"@angular/cli": "18.2.11",
"@angular/compiler": "18.2.11",
"@angular/compiler-cli": "18.2.11",
"@angular/language-service": "18.2.11",
"@herdwatch/cordova-plugin-chooser": "1.4.0",
"@ionic/angular-toolkit": "12.1.1",
"@ionic/cordova-builders": "12.1.2",
"@types/node": "22.9.0",
"cordova-android": "13.0.0",
"cordova-ios": "7.1.1",
"cordova-plugin-camera": "8.0.0",
"cordova-plugin-device": "3.0.0",
"cordova-plugin-ffmpeg": "file:../plugin",
"cordova-plugin-file": "8.1.2",
"cordova-plugin-ionic-keyboard": "^2.2.0",
"cordova-plugin-ionic-webview": "5.0.1",
"cordova-plugin-statusbar": "4.0.0",
"patch-package": "^8.0.0",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
"description": "A demo application for the cordova-plugin-ffmpeg",
"cordova": {
"plugins": {
"cordova-plugin-statusbar": {},
"cordova-plugin-device": {},
"cordova-plugin-ionic-webview": {},
"cordova-plugin-ionic-keyboard": {},
"cordova-plugin-ffmpeg": {},
"cordova-plugin-file": {
"ANDROIDX_WEBKIT_VERSION": "1.4.0"
},
"@herdwatch/cordova-plugin-chooser": {},
"cordova-plugin-camera": {
"ANDROIDX_CORE_VERSION": "1.6.+"
}
},
"platforms": [
"ios",
"android"
]
}
}