-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.38 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.38 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
{
"name": "example-app",
"version": "7.0.2",
"author": "Alex Ryltsov <ryltsov.alex@gmail.com>",
"homepage": "https://github.com/capacitor-community/camera-preview",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"build:dev": "npm run clear:cache && ionic build --configuration development",
"build:dev:sync": "npm run clear:cache && ionic build --configuration development && cap sync --inline",
"serve:dev": "npm run clear:cache && ionic serve --configuration development",
"build:dev:android:copy": "npm run build:dev && cap copy --inline android",
"build:dev:android:sync": "npm run build:dev && cap sync --inline android",
"build:dev:android:sync:open": "npm run build:dev:android:sync && cap open android",
"build:dev:ios:copy": "npm run build:dev && cap copy --inline ios",
"build:dev:ios:sync": "npm run build:dev && cap sync --inline ios",
"build:dev:ios:sync:open": "npm run build:dev:ios:sync && cap open ios",
"clear:cache": "rm -rf .angular/cache",
"open:android": "cd .. && npm run build && cd example-app && npm run build:dev:android:sync:open",
"sync:android": "cd .. && npm run build && cd example-app && npm run build:dev:android:sync",
"open:ios": "cd .. && npm run build && cd example-app && npm run build:dev:ios:sync:open",
"sync:ios": "cd .. && npm run build && cd example-app && npm run build:dev:ios:sync"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.0.5",
"@angular/common": "^20.0.5",
"@angular/compiler": "^20.3.16",
"@angular/core": "^20.0.5",
"@angular/forms": "^20.0.5",
"@angular/platform-browser": "^20.0.5",
"@angular/platform-browser-dynamic": "^20.0.5",
"@angular/router": "^20.0.5",
"@capacitor-community/camera-preview": "file:..",
"@capacitor/android": "^7.4.0",
"@capacitor/app": "^7.0.1",
"@capacitor/core": "^7.4.0",
"@capacitor/haptics": "^7.0.1",
"@capacitor/ios": "^7.4.0",
"@capacitor/keyboard": "^7.0.1",
"@capacitor/status-bar": "^7.0.1",
"@ionic/angular": "^8.6.2",
"ionicons": "^8.0.9",
"rxjs": "^7.8.2",
"tslib": "^2.3.0",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular-eslint/builder": "^20.1.1",
"@angular-eslint/eslint-plugin": "^20.1.1",
"@angular-eslint/eslint-plugin-template": "^20.1.1",
"@angular-eslint/schematics": "^20.1.1",
"@angular-eslint/template-parser": "^20.1.1",
"@angular/build": "^20.0.4",
"@angular/cli": "^20.0.4",
"@angular/compiler-cli": "^20.0.5",
"@angular/language-service": "^20.0.5",
"@capacitor/cli": "^7.4.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.30.0",
"@ionic/angular-toolkit": "^12.2.0",
"@types/jasmine": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint": "^9.28.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^51.3.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jasmine-core": "^5.8.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"typescript": "^5.8.3"
},
"description": "Camera Preview Plugin Example"
}