forked from dekwilde/CanvasCameraPlugin
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
71 lines (71 loc) · 1.67 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
{
"name": "com.virtuoworks.cordova-plugin-canvascamera",
"version": "1.2.2",
"description": "A Cordova/Capacitor plugin to display video from the device's camera into an HTML canvas element.",
"repository": "https://github.com/VirtuoWorks/CanvasCameraPlugin.git",
"main": "www/CanvasCamera.js",
"typings": "www/CanvasCamera.d.ts",
"files": [
"www",
"src/ios",
"src/android",
"plugin.xml",
"package.json"
],
"cordova": {
"id": "com.virtuoworks.cordova-plugin-canvascamera",
"platforms": [
"android",
"ios"
]
},
"keywords": [
"ecosystem:capacitor",
"ecosystem:cordova",
"cordova-android",
"cordova-ios",
"capacitor-android",
"capacitor-ios",
"capacitor",
"cordova",
"camera",
"canvas"
],
"contributors": [
{
"name": "Virtuoworks",
"url": "https://www.virtuoworks.com/"
},
{
"name": "Sami Radi",
"email": "[email protected]",
"url": "https://github.com/Sami-Radi"
},
{
"name": "Sébastien Guillon",
"email": "[email protected]",
"url": "https://github.com/Sebastien-Guillon"
}
],
"engines": {
"cordova": ">=6.3"
},
"license": "MIT",
"devDependencies": {
"@types/cordova": "^0.0.34",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"cordova": "^11.0.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"jsdoc": "^3.6.10",
"npm-check-updates": "^11.8.5",
"prettier": "^2.5.1",
"typescript": "^4.6.3"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch"
}
}